Interface COM.ibm.jaws.services.bcfw.CloneableCommandOn
All Packages Class Hierarchy This Package Previous Next Index
Interface COM.ibm.jaws.services.bcfw.CloneableCommandOn
- public interface CloneableCommandOn
- extends Object
- extends CommandOn, Cloneable
This interface is a Cloneable version of the CommandOn interface.
Support this if you want to use the command object as a
parameter in dispatchAll().
-
clone()
-
This allows a copy of a CommandOn object to be implemented by
by the following:
public Object clone() throws CloneNotSupportedException {
return super.clone();
}
This is needed in the implementation of dispatchAll().
clone
public abstract Object clone() throws CloneNotSupportedException
- This allows a copy of a CommandOn object to be implemented by
by the following:
public Object clone() throws CloneNotSupportedException {
return super.clone();
}
This is needed in the implementation of dispatchAll().
- Overrides:
- clone in class Object
All Packages Class Hierarchy This Package Previous Next Index