Interface aglet.event.CloneListener
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface aglet.event.CloneListener

public interface CloneListener
extends Object
extends Serializable
The listener interface for receiving clone events on an aglet.

Method Index

 o onClone(CloneEvent)
Invoked after an aglet was cloned.
 o onCloned(CloneEvent)
Invoked after an aglet was cloned.
 o onCloning(CloneEvent)
Invoked when an aglet is attempted to clone

Methods

 o onCloning
  public abstract void onCloning(CloneEvent event)
Invoked when an aglet is attempted to clone
 o onClone
  public abstract void onClone(CloneEvent event)
Invoked after an aglet was cloned. This is delivered to the cloned aglet.
 o onCloned
  public abstract void onCloned(CloneEvent event)
Invoked after an aglet was cloned. This is delivered to the original aglet.

All Packages  Class Hierarchy  This Package  Previous  Next  Index