/* * Geotoolkit.org - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2009-2012, Open Source Geospatial Foundation (OSGeo) * (C) 2009-2012, Geomatys * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; * version 2.1 of the License. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ package org.geotoolkit.util; /** * Indicates that it is legal to make a field-for-field copy of instances of implementing classes. * A cloneable class implements the J2SE's {@link java.lang.Cloneable} standard interface and * additionally overrides the {@link Object#clone()} method with public access. * <p> * Because the {@link Object#clone()} method has protected access, containers wanting to clone * theirs elements need to 1) use Java reflection (which is less efficient than standard method * calls), or 2) cast every elements to a specific type like {@link java.util.Date} (which may * require a large amount of "{@code if (x instanceof y)}" checks if arbitrary classes are * allowed). This {@code Cloneable} interface had a third alternative: checks only for this * interface instead of a list of particular cases. * <p> * Implementors of cloneable classes may consider implementing this interface, but this is not * mandatory. A large amount of independent classes like {@link java.util.Date} will continue to * ignore this interface, so no rule can be enforced anyway. However this interface may help the * work of containers in some case. For example a container may checks for this interface first, * and uses Java reflection as a fallback. * * @author Martin Desruisseaux (IRD) * @version 3.01 * * @see java.lang.Cloneable * @see <A HREF="http://developer.java.sun.com/developer/bugParade/bugs/4098033.html">"<cite>Cloneable * doesn't define <code>clone()</code></cite>" on Sun's bug parade</A> * * @since 3.01 (derived from GeoAPI 1.0) * @module */ public interface Cloneable extends java.lang.Cloneable { /** * Creates and returns a copy of this object. * The precise meaning of "copy" may depend on the class of the object. * * @return A copy of this object. * * @see Object#clone */ Object clone(); }