...
#2. If the class is reliant on a non-final clone method of one of the superclasses, then define the following
Code Block |
---|
public final void clone() throws java.lang.CloneNotSupportedException {
super.clone();
}
|
...
#2. If the class is reliant on a non-final clone method of one of the superclasses, then define the following
Code Block |
---|
public final void clone() throws java.lang.CloneNotSupportedException {
super.clone();
}
|