|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
RelationDescriptor provides read access to:
Example:
From FieldDescriptor fieldDesc
RelationDescriptor relationDesc = fieldDesc.getRelatedRelation();
From RowDescriptor rowDesc
RelationDescriptorIterator relationDescIterator = rowDesc.getRelatingRelations();
while(relationDescIterator.hasNext()){
RelationDescriptor relationDescriptor = (RelationDescriptor)relationDescIterator.next();
...............
...............
}
From SyncBODescriptor syncBoDesc
RelationDescriptorIterator relationDescIterator = syncBoDesc.getDependencyRelations();
while(relationDescIterator.hasNext()){
RelationDescriptor relationDescriptor = (RelationDescriptor)relationDescIterator.next();
...............
...............
}
FieldDescriptor
,
RowDescriptor
,
SyncBoDescriptor
Method Summary | |
DependencyType |
getDependency()
Returns the DependencyType described in this RelationDescriptor. |
RowDescriptor |
getRelatedRowDescriptor()
Returns the RowDescriptor instance of the related Row. |
FieldDescriptor |
getRelatingFieldDescriptor()
Returns the FieldDescriptor instance of the relating field. |
java.lang.String |
getRelationDescriptorId()
Returns a unique id string for this RelationDescriptor. |
Method Detail |
public FieldDescriptor getRelatingFieldDescriptor()
public RowDescriptor getRelatedRowDescriptor()
public DependencyType getDependency()
public java.lang.String getRelationDescriptorId()
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |