|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
A listener interface for receiving property-related events.
Any class that is interested in processing property-related events must
implements this interface. A property listener can be
registered with a collection of properties using the
Properties#addPropertyListener
method. After
registration, the property listener will then be notified whenever
a property event occurs.
The following property events are supported:
Method Summary | |
void |
propertyAdded(PropertyEvent event)
Invoked when a new property is added to the properties object. |
void |
propertyRemoved(PropertyEvent event)
Invoked when a property is removed from the properties object. |
void |
propertyUpdated(PropertyEvent event)
Invoked when a property that already exists in the properties object is updated with a new property object. |
Method Detail |
public void propertyAdded(PropertyEvent event)
event
- Describes the details of the event including a reference to
the new property object.public void propertyRemoved(PropertyEvent event)
event
- Describes the details of the event including a reference to
the property that was removed.public void propertyUpdated(PropertyEvent event)
event
- Describes the details of the event including a reference to
the updated property object.
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |