Package de.gsi.dataset.event
Interface EventListener
-
public interface EventListener- Author:
- rstein
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidhandle(UpdateEvent event)This method needs to be provided by an implementation ofUpdateListener.
-
-
-
Method Detail
-
handle
void handle(UpdateEvent event)
This method needs to be provided by an implementation ofUpdateListener. It is called if anEventSourcehas been modified/updated.In general is is considered bad practice to modify the observed value in this method.
- Parameters:
event- TheUpdateEventissued by the modifiedUpdateSource
-
-