Example usage for org.objectweb.asm.commons Method Method

List of usage examples for org.objectweb.asm.commons Method Method

Introduction

In this page you can find the example usage for org.objectweb.asm.commons Method Method.

Prototype

public Method(final String name, final Type returnType, final Type[] argumentTypes) 

Source Link

Document

Constructs a new Method .

Usage

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();
}