Java / Object, Class and Package
How to implement cloning?
The java.lang.Cloneable interface must be implemented by the class whose objects would be cloned.
Implement the clone() method in the class protected Object clone()throws CloneNotSupportedException.
More Related questions...