com.mindfusion.diagramming
Class Relationship

java.lang.Object
  extended by com.mindfusion.diagramming.Relationship

public class Relationship
extends java.lang.Object

The members of this enumeration specify how table rows should be related. These constants can be used as parameters of the TableNode.addRelation(int, int, com.mindfusion.diagramming.TableNode, int) method of the TableNode class.


Field Summary
static int ManyToOne
          The specified row is at the "many" end of a one-to-many relation.
static int OneToMany
          The specified row is at the "one" end of a one-to-many relation.
 
Constructor Summary
Relationship()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

OneToMany

public static final int OneToMany
The specified row is at the "one" end of a one-to-many relation.

See Also:
Constant Field Values

ManyToOne

public static final int ManyToOne
The specified row is at the "many" end of a one-to-many relation.

See Also:
Constant Field Values
Constructor Detail

Relationship

public Relationship()