All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.pepsoft.util.undo.Cloneable Maven / Gradle / Ivy

There is a newer version: 2.15.18
Show newest version
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package org.pepsoft.util.undo;

/**
 * A cloneable class which promises that its clones are deep copies.
 *
 * @author pepijn
 */
public interface Cloneable extends java.lang.Cloneable {
    /**
     * Make a deep copy of the object. All mutable state, recursively, must be copied.
     *
     * @return A deep copy of the object.
     */
    T clone();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy