Searched defs:methodDescriptor (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DType.java287 * @param methodDescriptor a method descriptor.
291 public static Type[] getArgumentTypes(final String methodDescriptor) { argument
292 char[] buf = methodDescriptor.toCharArray();
339 * @param methodDescriptor a method descriptor.
343 public static Type getReturnType(final String methodDescriptor) { argument
344 char[] buf = methodDescriptor.toCharArray();
345 return getType(buf, methodDescriptor.indexOf(')') + 1);

Completed in 139 milliseconds