Home | History | Annotate | Download | only in lib

Lines Matching refs:typeDescriptor

163         return new signatureCompiler ().typeDescriptor (type);
178 public static Class descriptorToType (String typedescriptor) throws ClassNotFoundException
180 return new typeDescriptorCompiler ().descriptorToClass (typedescriptor);
333 public static String typeDescriptorToUserName (final String typedescriptor)
335 return new typeDescriptorCompiler2 ().descriptorToClass (typedescriptor);
412 String typeDescriptor (Class type)
495 typedescriptor) throws ClassNotFoundException
497 char first = typedescriptor.charAt (0);
501 return arrayOf (typedescriptor.substring (1));
504 return Class.forName (vmNameToJavaName (typedescriptor.substring (1, typedescriptor.length() - 1)));
512 Class arrayOf (String typedescriptor) throws ClassNotFoundException
514 char first = typedescriptor.charAt (0);
519 component = arrayOf (typedescriptor.substring (1));
522 component = Class.forName (vmNameToJavaName (typedescriptor.substring (1, typedescriptor.length() - 1)));
551 String descriptorToClass (String typedescriptor)
553 //System.out.println ("typedesc1 -> " + typedescriptor);
555 char first = typedescriptor.charAt (0);
559 return arrayOf (typedescriptor.substring (1));
562 return vmNameToJavaName (typedescriptor.substring (1, typedescriptor.length() - 1));
568 String arrayOf (String typedescriptor)
570 //System.out.println ("typedesc2 -> " + typedescriptor);
572 char first = typedescriptor.charAt (0);
577 component = arrayOf (typedescriptor.substring (1));
580 component = vmNameToJavaName (typedescriptor.substring (1, typedescriptor.length() - 1));