All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.ibm.aglet.system.ContextListener

public interface ContextListener
extends EventListener
The ContextListener interface specifies a set of methods for receiving context events.


Method Index

 o agletActivated(ContextEvent)
Called when an aglet has been activated
 o agletArrived(ContextEvent)
Called when an aglet has arrived
 o agletCloned(ContextEvent)
Called when an aglet has been cloned
 o agletCreated(ContextEvent)
Called when an aglet has been created
 o agletDeactivated(ContextEvent)
Called when an aglet has been deactivated
 o agletDispatched(ContextEvent)
Called when an aglet has been dispatched
 o agletDisposed(ContextEvent)
Called when an aglet has been disposed
 o agletReverted(ContextEvent)
Called when an aglet has been reverted.
 o agletStateChanged(ContextEvent)
Called when the state of an aglet has changed.
 o contextShutdown(ContextEvent)
Called when shutting down
 o contextStarted(ContextEvent)
Called when the context is started.
 o showDocument(ContextEvent)
Called when an aglet request to show the document given as URL
 o showMessage(ContextEvent)
Called to show the message

Methods

 o contextStarted
 public abstract void contextStarted(ContextEvent ev)
Called when the context is started.

 o contextShutdown
 public abstract void contextShutdown(ContextEvent ev)
Called when shutting down

 o agletCreated
 public abstract void agletCreated(ContextEvent ev)
Called when an aglet has been created

 o agletCloned
 public abstract void agletCloned(ContextEvent ev)
Called when an aglet has been cloned

 o agletArrived
 public abstract void agletArrived(ContextEvent ev)
Called when an aglet has arrived

 o agletActivated
 public abstract void agletActivated(ContextEvent ev)
Called when an aglet has been activated

 o agletReverted
 public abstract void agletReverted(ContextEvent ev)
Called when an aglet has been reverted.

 o agletDisposed
 public abstract void agletDisposed(ContextEvent ev)
Called when an aglet has been disposed

 o agletDispatched
 public abstract void agletDispatched(ContextEvent ev)
Called when an aglet has been dispatched

 o agletDeactivated
 public abstract void agletDeactivated(ContextEvent ev)
Called when an aglet has been deactivated

 o agletStateChanged
 public abstract void agletStateChanged(ContextEvent ev)
Called when the state of an aglet has changed.

 o showDocument
 public abstract void showDocument(ContextEvent ev)
Called when an aglet request to show the document given as URL

See Also:
showDocument
 o showMessage
 public abstract void showMessage(ContextEvent ev)
Called to show the message


All Packages  Class Hierarchy  This Package  Previous  Next  Index