ADD file via upload

main
pc9arzikf 6 months ago
parent 1796840798
commit 55b8e41e47

@ -0,0 +1,13 @@
/**
* Prototype interface: Defines the clone method, all "expensive objects" that need to be pool-managed
* must implement this interface
*/
public interface Prototype<T> extends Cloneable {
/**
* Create and return a copy of the current object
* @return Cloned object instance
*/
public T clone();
}
Loading…
Cancel
Save