| CloneablePoint.java |
package lectures.deep_shallow_copy;
import util.annotations.WebDocuments;
import lectures.inheritance.MutablePoint;
@WebDocuments({"Lectures/DeepShallowCopy.pptx", "Lectures/DeepShallowCopy.pdf", "Videos/DeepShallowCopy.avi"})
public interface CloneablePoint extends MutablePoint {
public Object clone();
}