⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cloneable.java

📁 GEo 地理操作源代码
💻 JAVA
字号:
/*$************************************************************************************************ ** ** $Id: Cloneable.java,v 1.3 2004/03/09 20:02:56 desruisseaux Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/util/Cloneable.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.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 * additionnaly overrides the {@link Object#clone()} method with public access. * * @author <A HREF="http://www.opengis.org">OpenGIS&reg; consortium</A> * @version 2.0 * * @see java.lang.Cloneable * @see <A HREF="http://developer.java.sun.com/developer/bugParade/bugs/4098033.html">&quot;<CITE>Cloneable *      doesn't define <code>clone()</code></CITE>&quot; on Sun's bug parade</A> */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 clone of this instance.     * @see Object#clone     */    public Object clone();}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -