*/
public ObjectInstantiator newInstantiatorOf(Class type) {
if(JVM_NAME.startsWith(SUN)) {
if(VM_VERSION.startsWith("1.3")) {
return new Sun13Instantiator(type);
}
}
else if(JVM_NAME.startsWith(JROCKIT)) {
if(VM_VERSION.startsWith("1.3")) {
return new JRockit131Instantiator(type);