org.apache.commons.collections.functors
Class PrototypeFactory
java.lang.Object
org.apache.commons.collections.functors.PrototypeFactory
public class PrototypeFactory
- extends Object
Factory implementation that creates a new instance each time based on a prototype.
- Since:
- Commons Collections 3.0
- Version:
- $Revision: 348444 $ $Date: 2005-11-23 14:06:56 +0000 (Wed, 23 Nov 2005) $
- Author:
- Stephen Colebourne
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
getInstance
public static Factory getInstance(Object prototype)
- Factory method that performs validation.
Creates a Factory that will return a clone of the same prototype object
each time the factory is used. The prototype will be cloned using one of these
techniques (in order):
- public clone method
- public copy constructor
- serialization clone
Copyright © 2001-2009 Apache Software Foundation. All Rights Reserved.