📄 cloneable.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® consortium</A> * @version 2.0 * * @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> */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 + -