All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.ibm.aglet.event.CloneAdapter

java.lang.Object
   |
   +----com.ibm.aglet.event.CloneAdapter

public class CloneAdapter
extends Object
implements CloneListener
The adapter which receives clone events. This class is provided as convenience for easily creating listerns by extending this class and overriding only the methods of interest.


Constructor Index

 o CloneAdapter()

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

Constructors

 o CloneAdapter
 public CloneAdapter()

Methods

 o onCloning
 public void onCloning(CloneEvent event)
Invoked when an aglet is attempted to clone

 o onClone
 public void onClone(CloneEvent event)
Invoked after an aglet was cloned. This is delivered to the cloned aglet.

 o onCloned
 public 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