Package ext.jtester.objenesis.strategy

Examples of ext.jtester.objenesis.strategy.SerializingInstantiatorStrategy


   /**
    * Default constructor using the {@link org.objenesis.strategy.SerializingInstantiatorStrategy}
    */
   public ObjenesisSerializer() {
      super(new SerializingInstantiatorStrategy());
   }
View Full Code Here


    * {@link org.objenesis.instantiator.ObjectInstantiator}s
    *
    * @param useCache If {@link org.objenesis.instantiator.ObjectInstantiator}s should be cached
    */
   public ObjenesisSerializer(boolean useCache) {
      super(new SerializingInstantiatorStrategy(), useCache);
   }
View Full Code Here

TOP

Related Classes of ext.jtester.objenesis.strategy.SerializingInstantiatorStrategy

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.