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.
-
CloneAdapter()
-
-
onClone(CloneEvent)
- Invoked after an aglet was cloned.
-
onCloned(CloneEvent)
- Invoked after an aglet was cloned.
-
onCloning(CloneEvent)
- Invoked when an aglet is attempted to clone
CloneAdapter
public CloneAdapter()
onCloning
public void onCloning(CloneEvent event)
- Invoked when an aglet is attempted to clone
onClone
public void onClone(CloneEvent event)
- Invoked after an aglet was cloned. This is delivered to the
cloned aglet.
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