01: /*
02:
03: This software is OSI Certified Open Source Software.
04: OSI Certified is a certification mark of the Open Source Initiative.
05:
06: The license (Mozilla version 1.0) can be read at the MMBase site.
07: See http://www.MMBase.org/license
08:
09: */
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 {
22: public Object clone();
23: }
|