org.zaval.lw.event
Interface LwTrackerListener
- All Superinterfaces:
- java.util.EventListener
- public interface LwTrackerListener
- extends java.util.EventListener
This listener interface for receiving tracker events.
valueChanged
public void valueChanged(LwTrackerEvent e)
- Invoked when the tracker bundle value is changed.
- Parameters:
e - the specified tracker event.
valueChangedDone
public void valueChangedDone(LwTrackerEvent e)
- Invoked when the tracker bundle value changing is done.
- Parameters:
e - the specified tracker event.
valueInfo
public void valueInfo(LwTrackerEvent e)
- Invoked when the tracker informs the listener with the bundle value.
- Parameters:
e - the specified tracker event.
bundleAdded
public void bundleAdded(LwTrackerEvent e)
- Invoked when the new tracker bundle has been added.
- Parameters:
e - the specified tracker event.
bundleRemoved
public void bundleRemoved(LwTrackerEvent e)
- Invoked when the tracker bundle has been removed.
- Parameters:
e - the specified tracker event.
|