Package org.apache.cayenne.map.event
Interface DbAttributeListener
- All Superinterfaces:
EventListener
- All Known Implementing Classes:
DbEntity
,DetectedDbEntity
public interface DbAttributeListener extends EventListener
For managing the changes in the DbAttribute.
-
Method Summary
Modifier and Type Method Description void
dbAttributeAdded(AttributeEvent e)
New attribute has been created/added.void
dbAttributeChanged(AttributeEvent e)
Attribute property changed.void
dbAttributeRemoved(AttributeEvent e)
Attribute has been removed.
-
Method Details
-
dbAttributeChanged
Attribute property changed. -
dbAttributeAdded
New attribute has been created/added. -
dbAttributeRemoved
Attribute has been removed.
-