Uses of Interface
koala.dynamicjava.tree.IdentifierToken

Packages that use IdentifierToken
koala.dynamicjava.parser.impl   
koala.dynamicjava.parser.wrapper Provides a collection of classes used to hide the implementation of the parser. 
koala.dynamicjava.tree   
koala.dynamicjava.tree.tiger   
 

Uses of IdentifierToken in koala.dynamicjava.parser.impl
 

Methods in koala.dynamicjava.parser.impl that return types with arguments of type IdentifierToken
 List<IdentifierToken> Parser.name()
          Parses a name
 

Uses of IdentifierToken in koala.dynamicjava.parser.wrapper
 

Classes in koala.dynamicjava.parser.wrapper that implement IdentifierToken
 class TreeToken
          An IdentifierToken wrapping a javacc Token.
 

Uses of IdentifierToken in koala.dynamicjava.tree
 

Classes in koala.dynamicjava.tree that implement IdentifierToken
 class Identifier
          A stand-alone IdentifierToken.
 

Methods in koala.dynamicjava.tree that return types with arguments of type IdentifierToken
 List<IdentifierToken> AmbiguousName.getIdentifiers()
          Returns the identifiers that compose this name
 List<? extends IdentifierToken> ReferenceTypeName.getIdentifiers()
          Returns the list of identifiers that make up this type
 

Method parameters in koala.dynamicjava.tree with type arguments of type IdentifierToken
static String TreeUtilities.listToName(List<? extends IdentifierToken> l)
          Transforms a list of token into a dot-separated name
 void AmbiguousName.setIdentifier(List<IdentifierToken> l)
          Sets the identifiers that compose this name.
 void ReferenceTypeName.setIdentifiers(List<? extends IdentifierToken> ids)
          Sets the identifiers of this type
 

Constructors in koala.dynamicjava.tree with parameters of type IdentifierToken
AmbiguousName(IdentifierToken... ids)
           
ReferenceTypeName(IdentifierToken... ids)
           
 

Constructor parameters in koala.dynamicjava.tree with type arguments of type IdentifierToken
AmbiguousName(List<IdentifierToken> ids)
          Creates a new qualified name
AmbiguousName(List<IdentifierToken> ids, SourceInfo si)
          Creates a new qualified name
ImportDeclaration(List<IdentifierToken> ident, boolean pkg, boolean sttc)
          Creates a new import declaration node
ImportDeclaration(List<IdentifierToken> ident, boolean pkg, boolean sttc, SourceInfo si)
          Creates a new import declaration node
PackageDeclaration(ModifierSet mods, List<IdentifierToken> ident)
          Creates a new package declaration node
PackageDeclaration(ModifierSet mods, List<IdentifierToken> ident, SourceInfo si)
          Creates a new package declaration node
ReferenceTypeName(List<? extends IdentifierToken> ids)
          Initializes the type
ReferenceTypeName(List<? extends IdentifierToken> ids, SourceInfo si)
          Initializes the type
 

Uses of IdentifierToken in koala.dynamicjava.tree.tiger
 

Constructor parameters in koala.dynamicjava.tree.tiger with type arguments of type IdentifierToken
GenericReferenceTypeName(List<? extends IdentifierToken> ids, List<? extends List<? extends TypeName>> typeArgs)
          Initializes the type
GenericReferenceTypeName(List<? extends IdentifierToken> ids, List<? extends List<? extends TypeName>> typeArgs, SourceInfo si)
          Initializes the type
TypeParameter(List<IdentifierToken> ids, ReferenceTypeName in_bound, List<ReferenceTypeName> in_interfaceBounds, SourceInfo in_sourceInfo)
          Constructs a TypeParameter.