org.PingOO.DLAI.lib.appli.event
Interface AppliListener

All Known Implementing Classes:
AppliAdapter

public abstract interface AppliListener
extends java.util.EventListener

Create a new AppliListener.
These listeners are used to transfer events inside the GUI tree of the PingOO's DLAI client.
Using a listener, a programmer must implement all methods interfaced here.

Since:
PingOO 2.0
Version:
2.0
Author:
Fabrice Bouyé (bouye@cur-archamps.fr)
See Also:
EventListener

Method Summary
 void languageUpdated(AppliEvent event)
          Indicates that the UI's language has changed.
 void lookNFeelUpdated(AppliEvent event)
          Indicates that the look'n feel of the GUI has been updated.
 void slaveKilled(AppliEvent event)
          Indicates that a slave has been killed.
 void toolKilled(AppliEvent event)
          Indicates that a tool has been killed.
 

Method Detail

lookNFeelUpdated

public void lookNFeelUpdated(AppliEvent event)
Indicates that the look'n feel of the GUI has been updated.
Parameters:
event - The event fired to start a look'n feel update of the UI.

slaveKilled

public void slaveKilled(AppliEvent event)
Indicates that a slave has been killed.
Parameters:
event - The event fired to indicate that a slave is dying.

toolKilled

public void toolKilled(AppliEvent event)
Indicates that a tool has been killed.
Parameters:
event - The event fired to indicate that a tool is dying.

languageUpdated

public void languageUpdated(AppliEvent event)
Indicates that the UI's language has changed.
Parameters:
event - The event fired to start a language update of the UI.