Package org.drools.objenesis.instantiator.jrockit

Examples of org.drools.objenesis.instantiator.jrockit.JRockitLegacyInstantiator


                // From R26 on, java.vm.version starts with R
                if ( !VENDOR_VERSION.startsWith( "R" ) ) {
                    // On R25.1 and R25.2, ReflectionFactory should work. Otherwise, we must use the
                    // Legacy instantiator.
                    if ( VM_INFO == null || !VM_INFO.startsWith( "R25.1" ) || !VM_INFO.startsWith( "R25.2" ) ) {
                        return new JRockitLegacyInstantiator( type );
                    }
                }
            }
        } else if ( JVM_NAME.startsWith( GNU ) ) {
            return new GCJInstantiator( type );
View Full Code Here

TOP

Related Classes of org.drools.objenesis.instantiator.jrockit.JRockitLegacyInstantiator

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.