Package pulse.util
Interface PropertyHolderListener
-
- All Superinterfaces:
Serializable
public interface PropertyHolderListener extends Serializable
A listener used byPropertyHolder
s to track changes with the associatedPropert
ies.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onPropertyChanged(PropertyEvent event)
This event is triggered by anyPropertyHolder
, the properties of which have been changed.
-
-
-
Method Detail
-
onPropertyChanged
void onPropertyChanged(PropertyEvent event)
This event is triggered by anyPropertyHolder
, the properties of which have been changed.- Parameters:
event
- the event associated with actions taken on aProperty
.
-
-