All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.objenesis.instantiator.ObjectInstantiator Maven / Gradle / Ivy

There is a newer version: 2.0.2-beta
Show newest version
package org.objenesis.instantiator;

/**
 * Instantiates a new object.
 */
public interface ObjectInstantiator {

   /**
    * Returns a new instance of an object. The returned object's class is defined by the
    * implementation.
    * 
    * @return A new instance of an object.
    */
   Object newInstance();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy