Package uicc.connection
Interface Observer
-
public interface ObserverUsed by the notification mechanism: objects which are used to observe state changes have to implement this interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voideventObserved(Event theEvent)This method is invoked by the observed object when a state change occurs.
-
-
-
Method Detail
-
eventObserved
void eventObserved(Event theEvent)
This method is invoked by the observed object when a state change occurs.- Parameters:
theEvent- the event which caused the state change.
-
-