Package org.jboss.marshalling.reflect
Class PublicReflectiveCreator
- java.lang.Object
-
- org.jboss.marshalling.reflect.PublicReflectiveCreator
-
- All Implemented Interfaces:
Creator
@Deprecated public class PublicReflectiveCreator extends Object implements Creator
Deprecated.this class simply delegates toReflectiveCreator
.A creator that simply uses reflection to locate and invoke a public, zero-argument constructor.
-
-
Constructor Summary
Constructors Constructor Description PublicReflectiveCreator()
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description <T> T
create(Class<T> clazz)
Deprecated.Create an object instance.
-
-
-
Method Detail
-
create
public <T> T create(Class<T> clazz) throws InvalidClassException
Deprecated.Create an object instance.- Specified by:
create
in interfaceCreator
- Parameters:
clazz
- the type of object to create- Returns:
- the object instance
- Throws:
InvalidClassException
- if an instance of the class could not be instantiated for some reason
-
-