ca.ubc.cs.elide.nodes
Class ConstructorNode

java.lang.Object
  |
  +--ca.ubc.cs.elide.nodes.ParseNode
        |
        +--ca.ubc.cs.elide.nodes.ChildBearingNode
              |
              +--ca.ubc.cs.elide.nodes.ModifierBearingNode
                    |
                    +--ca.ubc.cs.elide.nodes.CodeBearingNode
                          |
                          +--ca.ubc.cs.elide.nodes.MethodNode
                                |
                                +--ca.ubc.cs.elide.nodes.ConstructorNode
All Implemented Interfaces:
java.lang.Cloneable, java.io.Serializable

public class ConstructorNode
extends MethodNode

ConstructorNode objects represent constructor methods.

See Also:
Serialized Form

Constructor Summary
ConstructorNode()
           
 
Method Summary
 java.lang.String getName()
          Returns a String representing the unqualified name of this ConstructorNode object.
 
Methods inherited from class ca.ubc.cs.elide.nodes.MethodNode
getExceptionTypes, getParameter, getParameters, getReturnType, isBodyless, setReturnType
 
Methods inherited from class ca.ubc.cs.elide.nodes.CodeBearingNode
findBlock, getCodeElements, wrap
 
Methods inherited from class ca.ubc.cs.elide.nodes.ModifierBearingNode
getModifiers, makeDefaultAccess, makePrivate, makeProtected, makePublic, setAbstract, setFinal, setNative, setStatic, setSynchronized, setTransient, setVolatile
 
Methods inherited from class ca.ubc.cs.elide.nodes.ChildBearingNode
add, add, addTransform, clone, getChildren, remove
 
Methods inherited from class ca.ubc.cs.elide.nodes.ParseNode
findType, get, getComment, getDeclaringClass, getPackage, getParent, getRoot, put, registerType, setComment, setName, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ConstructorNode

public ConstructorNode()
Method Detail

getName

public java.lang.String getName()
Returns a String representing the unqualified name of this ConstructorNode object.
Overrides:
getName in class ParseNode