KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > util > PublicCloneable


1 /*
2
3 This software is OSI Certified Open Source Software.
4 OSI Certified is a certification mark of the Open Source Initiative.
5
6 The license (Mozilla version 1.0) can be read at the MMBase site.
7 See http://www.MMBase.org/license
8
9 */

10 package org.mmbase.util;
11
12 /**
13  * The java interface {@link java.lang.Cloneable} has no public methods. This interface is simply
14  * Cloneable, but with the clone method public. So, if an object is PublicCloneable, you don't know
15  * merely that it's Cloneable, but you can also actually <em>do</em> it...
16  *
17  * @since MMBase-1.8
18  * @author Michiel Meeuwissen
19  * @version $Id: PublicCloneable.java,v 1.2 2006/04/19 21:10:58 michiel Exp $
20  */

21 public interface PublicCloneable extends Cloneable JavaDoc {
22     public Object JavaDoc clone();
23 }
24
Popular Tags