Searched refs:methoddescriptor (Results 1 – 1 of 1) sorted by relevance
185 public static String descriptorToReturnType (String methoddescriptor) in descriptorToReturnType() argument187 final int i1 = methoddescriptor.indexOf ('('); in descriptorToReturnType()188 final int i2 = methoddescriptor.lastIndexOf (')'); in descriptorToReturnType()190 if ((i1 < 0) || (i2 <= 0) || (i1 >= i2) || (i2 >= methoddescriptor.length () - 1)) in descriptorToReturnType()191 … throw new IllegalArgumentException ("malformed method descriptor: [" + methoddescriptor + "]"); in descriptorToReturnType()193 …return methoddescriptor.substring (i2 + 1); … in descriptorToReturnType()197 public static String [] descriptorToParameterTypes (String methoddescriptor) in descriptorToParameterTypes() argument203 … final methodDescriptorCompiler compiler = new methodDescriptorCompiler (methoddescriptor); in descriptorToParameterTypes()209 … throw new IllegalArgumentException ("error parsing [" + methoddescriptor + "]: " + e.toString ()); in descriptorToParameterTypes()338 public static String methodDescriptorToUserName (final String methoddescriptor) in methodDescriptorToUserName() argument[all …]