org.objenesis.instantiator.sun
Class SunReflectionFactorySerializationInstantiator

java.lang.Object
  extended by org.objenesis.instantiator.sun.SunReflectionFactorySerializationInstantiator
All Implemented Interfaces:
ObjectInstantiator

public class SunReflectionFactorySerializationInstantiator
extends Object
implements ObjectInstantiator

Instantiates an object using internal sun.reflect.ReflectionFactory - a class only available on JDK's that use Sun's 1.4 (or later) Java implementation. This instantiator will create classes in a way compatible with serialization, calling the first non-serializable superclass' no-arg constructor. This is the best way to instantiate an object without any side effects caused by the constructor - however it is not available on every platform.

See Also:
ObjectInstantiator

Constructor Summary
SunReflectionFactorySerializationInstantiator(Class type)
           
 
Method Summary
 Object newInstance()
          Returns a new instance of an object.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SunReflectionFactorySerializationInstantiator

public SunReflectionFactorySerializationInstantiator(Class type)
Method Detail

newInstance

public Object newInstance()
Description copied from interface: ObjectInstantiator
Returns a new instance of an object. The returned object's class is defined by the implementation.

Specified by:
newInstance in interface ObjectInstantiator
Returns:
A new instance of an object.


Copyright © 2011. All Rights Reserved.