Package org.drools.objenesis.strategy

Examples of org.drools.objenesis.strategy.SerializingInstantiatorStrategy


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


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

TOP

Related Classes of org.drools.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.