
Untitled
By: a guest on
Aug 16th, 2011 | syntax:
Java | size: 0.40 KB | views:
59 | expires: Never
package org.hypergraphdb.util;
/**
* <p>
* Expose the <code>clone</code> method publicly so that it can be invoked
* at an interface/abstract class level.
* </p>
*
* @author Borislav Iordanov
*
*/
public interface CloneMe extends Cloneable
{
<T> T clone();
//Name clash: The method clone() of type CloneMe has the same erasure as clone() of type Object //but does not override it
}