pt.compiler.parser.ast.body
Class TypeDeclaration

java.lang.Object
  extended by pt.compiler.parser.ast.Node
      extended by pt.compiler.parser.ast.body.BodyDeclaration
          extended by pt.compiler.parser.ast.body.TypeDeclaration
Direct Known Subclasses:
AnnotationDeclaration, ClassOrInterfaceDeclaration, EmptyTypeDeclaration, EnumDeclaration

public abstract class TypeDeclaration
extends BodyDeclaration

Author:
Julio Vilmar Gesser

Constructor Summary
TypeDeclaration(int line, int column, JavadocComment javaDoc, java.lang.String name, int modifiers, java.util.List<BodyDeclaration> members)
           
 
Method Summary
 java.util.List<BodyDeclaration> getMembers()
           
 int getModifiers()
           
 java.lang.String getName()
           
 
Methods inherited from class pt.compiler.parser.ast.body.BodyDeclaration
getJavaDoc
 
Methods inherited from class pt.compiler.parser.ast.Node
accept, accept, getBeginColumn, getBeginLine, getData, getEndColumn, getEndLine, setData, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

TypeDeclaration

public TypeDeclaration(int line,
                       int column,
                       JavadocComment javaDoc,
                       java.lang.String name,
                       int modifiers,
                       java.util.List<BodyDeclaration> members)
Method Detail

getName

public java.lang.String getName()

getModifiers

public int getModifiers()

getMembers

public java.util.List<BodyDeclaration> getMembers()