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

org.objenesis.ObjenesisStd Maven / Gradle / Ivy

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

import org.objenesis.strategy.StdInstantiatorStrategy;

/**
 * Objenesis implementation using the {@link org.objenesis.strategy.StdInstantiatorStrategy}.
 * 
 * @author Henri Tremblay
 */
public class ObjenesisStd extends ObjenesisBase {

   /**
    * Default constructor using the {@link org.objenesis.strategy.StdInstantiatorStrategy}
    */
   public ObjenesisStd() {
      super(new StdInstantiatorStrategy());
   }

   /**
    * Instance using the {@link org.objenesis.strategy.StdInstantiatorStrategy} with or without
    * caching {@link org.objenesis.instantiator.ObjectInstantiator}s
    * 
    * @param useCache If {@link org.objenesis.instantiator.ObjectInstantiator}s should be cached
    */
   public ObjenesisStd(boolean useCache) {
      super(new StdInstantiatorStrategy(), useCache);
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy