List of usage examples for org.objectweb.asm.commons Method Method
public Method(final String name, final Type returnType, final Type[] argumentTypes)
From source file:org.mutabilitydetector.checkers.settermethod.EnhancedClassNode.java
License:Apache License
private static String createDescriptorFor(final String methodName, final Type returnType, final Type[] argumentTypes) { final Method method = new Method(methodName, returnType, argumentTypes); return method.getDescriptor(); }