Package org.apache.cayenne.map.event
Interface DbRelationshipListener
- All Superinterfaces:
EventListener
- All Known Implementing Classes:
DbEntity
,DetectedDbEntity
public interface DbRelationshipListener extends EventListener
For managing the changes in the DbRelationship.
-
Method Summary
Modifier and Type Method Description void
dbRelationshipAdded(RelationshipEvent e)
Relationship has been created/added.void
dbRelationshipChanged(RelationshipEvent e)
Relationship property changed.void
dbRelationshipRemoved(RelationshipEvent e)
Relationship has been removed.
-
Method Details
-
dbRelationshipChanged
Relationship property changed. -
dbRelationshipAdded
Relationship has been created/added. -
dbRelationshipRemoved
Relationship has been removed.
-