Uses of Class
koala.dynamicjava.tree.TypeDeclaration

Packages that use TypeDeclaration
edu.rice.cs.dynamicjava.interpreter   
edu.rice.cs.dynamicjava.sourcechecker   
koala.dynamicjava.parser.impl   
koala.dynamicjava.tree   
 

Uses of TypeDeclaration in edu.rice.cs.dynamicjava.interpreter
 

Methods in edu.rice.cs.dynamicjava.interpreter with parameters of type TypeDeclaration
 void ClassChecker.checkBodies(TypeDeclaration ast)
          Check the field initializers, method bodies, nested class bodies, etc., of a class or interface declaration.
 void ClassChecker.checkSignatures(TypeDeclaration ast)
          Check the class's signature declarations.
 void ClassChecker.initializeClassSignatures(TypeDeclaration ast)
          Initialize and check the structure of types in the signatures of the given class and any nested classes.
 

Uses of TypeDeclaration in edu.rice.cs.dynamicjava.sourcechecker
 

Methods in edu.rice.cs.dynamicjava.sourcechecker that return types with arguments of type TypeDeclaration
 Relation<TypeDeclaration,ClassChecker> CompilationUnitChecker.extractDeclarations(CompilationUnit u)
          Produce a ClassChecker for each TypeDeclaration in the compilation unit.
 

Uses of TypeDeclaration in koala.dynamicjava.parser.impl
 

Methods in koala.dynamicjava.parser.impl that return TypeDeclaration
 TypeDeclaration Parser.typeDeclaration(Parser.DeclType level)
           
 TypeDeclaration Parser.unmodifiedTypeDeclaration(ModifierSet mods, Parser.DeclType level)
           
 

Uses of TypeDeclaration in koala.dynamicjava.tree
 

Subclasses of TypeDeclaration in koala.dynamicjava.tree
 class ClassDeclaration
          This class represents a class declaration
 class EnumDeclaration
          This class represents an enum declaration
 class InterfaceDeclaration
          This class represents an interface declaration