de.hillenbrand.jedi.parser
Class ASTInterfaceDeclaration

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

public class ASTInterfaceDeclaration
extends SimpleNode


Field Summary
 boolean isAbstract
           
 boolean isPublic
           
 boolean isStrict
           
 
Fields inherited from class de.hillenbrand.jedi.parser.SimpleNode
children, first_token, id, last_token, parent, parser
 
Constructor Summary
ASTInterfaceDeclaration(int id)
           
ASTInterfaceDeclaration(JavaParser p, int id)
           
 
Method Summary
 java.lang.String getExtends()
           
 java.lang.String getFilename()
           
 java.util.Vector<java.lang.String> getImports()
           
 java.util.Vector<ASTMethodDeclaration> getMethods()
           
 java.lang.String getName()
           
 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
 

Field Detail

isAbstract

public boolean isAbstract

isPublic

public boolean isPublic

isStrict

public boolean isStrict
Constructor Detail

ASTInterfaceDeclaration

public ASTInterfaceDeclaration(int id)

ASTInterfaceDeclaration

public ASTInterfaceDeclaration(JavaParser p,
                               int id)
Method Detail

getExtends

public java.lang.String getExtends()

getFilename

public java.lang.String getFilename()

getImports

public java.util.Vector<java.lang.String> getImports()

getMethods

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

getName

public java.lang.String getName()

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