de.hillenbrand.jedi.parser
Class ASTClassBody

java.lang.Object
  extended by de.hillenbrand.jedi.parser.SimpleNode
      extended by de.hillenbrand.jedi.parser.ASTClassBody
All Implemented Interfaces:
Node

public class ASTClassBody
extends SimpleNode


Field Summary
 
Fields inherited from class de.hillenbrand.jedi.parser.SimpleNode
children, first_token, id, last_token, parent, parser
 
Constructor Summary
ASTClassBody(int id)
           
ASTClassBody(JavaParser p, int id)
           
 
Method Summary
 java.util.Vector<ASTConstructorDeclaration> getConstructors()
           
 java.util.Vector<ASTEnumDeclaration> getEnumerations()
           
 java.util.Vector<ASTInitializer> getInitializers()
           
 java.util.Vector<ASTMethodDeclaration> getMethods()
           
 java.util.Vector<ASTNestedClassDeclaration> getNestedClasses()
           
 java.util.Vector<ASTNestedInterfaceDeclaration> getNestedInterfaces()
           
 java.util.Vector<FileLocation> getVariables()
           
 java.lang.Object jjtAccept(JavaParserVisitor visitor, java.lang.Object data)
          Accept the visitor
 
Methods inherited from class de.hillenbrand.jedi.parser.SimpleNode
childrenAccept, dump, getJavaDoc, jjtAddChild, jjtClose, jjtGetChild, jjtGetNumChildren, jjtGetParent, jjtOpen, jjtSetParent, toString, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ASTClassBody

public ASTClassBody(int id)

ASTClassBody

public ASTClassBody(JavaParser p,
                    int id)
Method Detail

getConstructors

public java.util.Vector<ASTConstructorDeclaration> getConstructors()

getEnumerations

public java.util.Vector<ASTEnumDeclaration> getEnumerations()

getInitializers

public java.util.Vector<ASTInitializer> getInitializers()

getMethods

public java.util.Vector<ASTMethodDeclaration> getMethods()

getNestedClasses

public java.util.Vector<ASTNestedClassDeclaration> getNestedClasses()

getNestedInterfaces

public java.util.Vector<ASTNestedInterfaceDeclaration> getNestedInterfaces()

getVariables

public java.util.Vector<FileLocation> getVariables()

jjtAccept

public java.lang.Object jjtAccept(JavaParserVisitor visitor,
                                  java.lang.Object data)
Accept the visitor. *

Specified by:
jjtAccept in interface Node
Overrides:
jjtAccept in class SimpleNode