Package org.fife.rsta.ac.java.rjc.ast
Interface TypeDeclarationContainer
-
- All Known Subinterfaces:
TypeDeclaration
- All Known Implementing Classes:
AbstractTypeDeclarationNode,CompilationUnit,EnumDeclaration,NormalClassDeclaration,NormalInterfaceDeclaration
public interface TypeDeclarationContainerInterface for tree nodes that can hold type declarations (e.g.CompilationUnits andTypeDeclarations).- Version:
- 1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddTypeDeclaration(TypeDeclaration typeDec)Adds a type declaration to this container.
-
-
-
Method Detail
-
addTypeDeclaration
void addTypeDeclaration(TypeDeclaration typeDec)
Adds a type declaration to this container.- Parameters:
typeDec- The new type declaration.
-
-