Java Doc for RelationManager.java in  » Database-ORM » MMBase » org » mmbase » bridge » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Database ORM » MMBase » org.mmbase.bridge 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.mmbase.bridge.RelationManager

All known Subclasses:   org.mmbase.bridge.implementation.BasicRelationManager,
RelationManager
public interface RelationManager extends NodeManager(Code)
This interface represents a relation constraint (or contex, if you like). More specifically, it represents a relation manager (itself a node manager) as it applies between bnode belonging to two other node managers. Some of the information here is retrieved from the NodeManager used to build the catual relation node (the data as described in the xml builder config file). This NodeManager is also referred to as the parent. Other data is retrieved from a special (hidden) object that decsribes what relations apply between two nodes. (formerly known as the TypeRel builder). This includes direction and cardinality, and the NodeManagers of nodes itself. These fields cannot be changed except through the use of an administration module. This interface is therefore not a real mmbase 'object' in itself - it exists of two objects joined together.
author:
   Rob Vermeulen
author:
   Pierre van Rooden
version:
   $Id: RelationManager.java,v 1.9 2007/11/28 15:09:55 michiel Exp $


Field Summary
final public static  intBIDIRECTIONAL
    
final public static  intUNIDIRECTIONAL
    


Method Summary
public  RelationcreateRelation(Node sourceNode, Node destinationNode)
     Adds a relation from this type.
public  RelationcreateRelation(Node sourceNode, RelationManager relationManager)
     This method from Node is redeclared here to prevent an ambiguous invocation of method.
public  NodeManagergetDestinationManager()
     Retrieves the type of node that can act as the destination of a relation of this type.
public  intgetDirectionality()
     Retrieves the directionality for this type (the default assigned to a new relation).
public  StringgetForwardGUIName()
    
public  StringgetForwardRole()
    
public  StringgetReciprocalGUIName()
    
public  StringgetReciprocalRole()
    
public  RelationListgetRelations(Node node)
     Retrieves all the relations of this type from a given node. This method returns all relations of a certain node not considering role, source manager and destination manager, but only the builder of relation (e.g.
public  NodeManagergetSourceManager()
     Retrieves the NodeManager of node that can act as the source of a relation of this type.
public  booleanmayCreateRelation(Node sourceNode, Node destinationNode)
     Check if the current user may create a new relation of this type between the specified nodes.

Field Detail
BIDIRECTIONAL
final public static int BIDIRECTIONAL(Code)
Directionality constant : bi-directional



UNIDIRECTIONAL
final public static int UNIDIRECTIONAL(Code)
Directionality constant : uni-directional





Method Detail
createRelation
public Relation createRelation(Node sourceNode, Node destinationNode)(Code)
Adds a relation from this type.
Parameters:
  sourceNode - the node from which you want to relate
Parameters:
  destinationNode - the node to which you want to relate the added relation



createRelation
public Relation createRelation(Node sourceNode, RelationManager relationManager)(Code)
This method from Node is redeclared here to prevent an ambiguous invocation of method. reson: the the method in the base class (Node) is more specific than the one in the RelationManager (RelationManager extends Node).
Parameters:
  sourceNode - source node of the relation
Parameters:
  relationManager - relation manager of the relation new Relation



getDestinationManager
public NodeManager getDestinationManager()(Code)
Retrieves the type of node that can act as the destination of a relation of this type. the destination NodeManager



getDirectionality
public int getDirectionality()(Code)
Retrieves the directionality for this type (the default assigned to a new relation). one of the directionality constants



getForwardGUIName
public String getForwardGUIName()(Code)
Retrieves the gui name (prompt) of the role from source to destination the name as a String



getForwardRole
public String getForwardRole()(Code)
Retrieves the role of the source to the destination the role as a String



getReciprocalGUIName
public String getReciprocalGUIName()(Code)
Retrieves the gui name (prompt) of the role from destination to source the name as a String



getReciprocalRole
public String getReciprocalRole()(Code)
Retrieves the role of the destination to the source the role as a String



getRelations
public RelationList getRelations(Node node)(Code)
Retrieves all the relations of this type from a given node. This method returns all relations of a certain node not considering role, source manager and destination manager, but only the builder of relation (e.g. it queries either insrel, or an extension thereof). See Node.getRelations(StringNodeManagerString) .
Parameters:
  node - the node from which to give the relations a list of relations



getSourceManager
public NodeManager getSourceManager()(Code)
Retrieves the NodeManager of node that can act as the source of a relation of this type. the source NodeManager



mayCreateRelation
public boolean mayCreateRelation(Node sourceNode, Node destinationNode)(Code)
Check if the current user may create a new relation of this type between the specified nodes.
Parameters:
  sourceNode - source node of the relation
Parameters:
  destinationNode - destination node of the relation Check if the current user may create a new relation of this typebetween the specified nodes.



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.