Uses of Class
ca.ubc.cs.elide.nodes.MethodNode

Uses of MethodNode in ca.ubc.cs.elide.nodes
 

Subclasses of MethodNode in ca.ubc.cs.elide.nodes
 class ConstructorNode
          ConstructorNode objects represent constructor methods.
 

Methods in ca.ubc.cs.elide.nodes that return MethodNode
 MethodNode BlockNode.getMethod()
           
static MethodNode NodeFactory.createMethod(java.lang.String text)
          Creates a MethodNode from a String of Java source code defining the class.
 MethodNode[] ClassNode.getDeclaredMethods()
          Returns an array of MethodNode objects reflecting all the methods declared by the class or interface represented by this ClassNode object
 MethodNode ClassNode.getDeclaredMethod(java.lang.String name)
          Returns a Method object that reflects the specified declared method of the class or interface represented by this ClassNode object.
 MethodNode ClassNode.getMethod(java.lang.String name)
          Returns a MethodNode object that reflects the specified public member method of the class or interface represented by this ClassNode object.
 MethodNode[] ClassNode.getMethods()
          Returns an array containing MethodNode objects reflecting all the public member methods of the class or interface represented by this ClassNode object, including those declared by the class or interface and and those inherited from superclasses and superinterfaces.