org.apache.commons.collections.functors
Class InstantiateFactory
java.lang.Object
|
+--org.apache.commons.collections.functors.InstantiateFactory
- All Implemented Interfaces:
- Factory, Serializable
- public class InstantiateFactory
- extends Object
- implements Factory, Serializable
Factory implementation that creates a new object instance by reflection.
- Since:
- Commons Collections 3.0
- Version:
- $Revision: 1.4 $ $Date: 2004/01/14 21:43:09 $
- Author:
- Stephen Colebourne
- See Also:
- Serialized Form
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
InstantiateFactory
public InstantiateFactory(Class classToInstantiate)
- Constructor that performs no validation.
Use
getInstance
if you want that.
- Parameters:
classToInstantiate
- the class to instantiate
InstantiateFactory
public InstantiateFactory(Class classToInstantiate,
Class[] paramTypes,
Object[] args)
- Constructor that performs no validation.
Use
getInstance
if you want that.
- Parameters:
classToInstantiate
- the class to instantiateparamTypes
- the constructor parameter types, not clonedargs
- the constructor arguments, not cloned
getInstance
public static Factory getInstance(Class classToInstantiate,
Class[] paramTypes,
Object[] args)
- Factory method that performs validation.
- Parameters:
classToInstantiate
- the class to instantiate, not nullparamTypes
- the constructor parameter typesargs
- the constructor arguments
create
public Object create()
- Create the object using a constructor
- Specified by:
create
in interface Factory
- Following copied from interface:
org.apache.commons.collections.Factory
- Returns:
- a new object
- Throws:
FunctorException
- (runtime) if the factory cannot create an object
Copyright © 2001-2004 Apache Software Foundation. All Rights Reserved.