Utility class for working with MethodNodes
| Type Params | Return Type | Name and description | 
|---|---|---|
 | 
                            static String | 
                            getPropertyName(MethodNode mNode)For a method node potentially representing a property, returns the name of the property.  | 
                        
 | 
                            static String | 
                            methodDescriptor(MethodNode mNode)Return the method node's descriptor which includes its return type, name and parameter types without generics.  | 
                        
 | 
                            static String | 
                            methodDescriptorWithoutReturnType(MethodNode mNode)Return the method node's descriptor including its name and parameter types without generics.  | 
                        
For a method node potentially representing a property, returns the name of the property.
mNode -  a MethodNodeReturn the method node's descriptor which includes its return type, name and parameter types without generics.
mNode -  the method nodeReturn the method node's descriptor including its name and parameter types without generics.
mNode -  the method node