Uses of Class
org.acm.seguin.pmd.symboltable.NameOccurrence

Packages that use NameOccurrence
org.acm.seguin.pmd.symboltable   
 

Uses of NameOccurrence in org.acm.seguin.pmd.symboltable
 

Methods in org.acm.seguin.pmd.symboltable that return NameOccurrence
 NameOccurrence NameOccurrence.getNameForWhichThisIsAQualifier()
           
 

Methods in org.acm.seguin.pmd.symboltable with parameters of type NameOccurrence
 NameDeclaration AbstractScope.addVariableNameOccurrence(NameOccurrence occurrence)
           
 NameDeclaration Scope.addVariableNameOccurrence(NameOccurrence occ)
          Adds a NameOccurrence to this scope - only call this after getting a true back from contains()
 NameDeclaration GlobalScope.addVariableNameOccurrence(NameOccurrence occ)
           
 boolean AbstractScope.contains(NameOccurrence occurrence)
           
 boolean Scope.contains(NameOccurrence occ)
          Tests whether or not a NameOccurrence is directly contained in the scope Note that if this search is just in this scope - it doesn't go diving into any contained scopes.
 boolean GlobalScope.contains(NameOccurrence occ)
           
protected  NameDeclaration ClassScope.findVariableHere(NameOccurrence occurrence)
           
protected abstract  NameDeclaration AbstractScope.findVariableHere(NameOccurrence occurrence)
           
protected  NameDeclaration MethodScope.findVariableHere(NameOccurrence occurrence)
           
protected  NameDeclaration GlobalScope.findVariableHere(NameOccurrence occ)
           
protected  NameDeclaration LocalScope.findVariableHere(NameOccurrence occurrence)
           
 void NameOccurrence.setNameWhichThisQualifies(NameOccurrence qualifiedName)
           
 

Constructors in org.acm.seguin.pmd.symboltable with parameters of type NameOccurrence
Search(NameOccurrence occ)