net.sourceforge.pmd.symboltable
Class MethodScope
java.lang.Object
extended by net.sourceforge.pmd.symboltable.AbstractScope
extended by net.sourceforge.pmd.symboltable.MethodScope
- All Implemented Interfaces:
- Scope
public class MethodScope
- extends AbstractScope
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
variableNames
protected java.util.Map<VariableNameDeclaration,java.util.List<NameOccurrence>> variableNames
MethodScope
public MethodScope(SimpleNode node)
getEnclosingMethodScope
public MethodScope getEnclosingMethodScope()
- Description copied from interface:
Scope
- Goes searching up the tree for this scope's enclosing MethodScope
This is handy if you're buried down in a LocalScope and need to
hop up to the MethodScope to find a method parameter.
- Specified by:
getEnclosingMethodScope
in interface Scope
- Overrides:
getEnclosingMethodScope
in class AbstractScope
-
getVariableDeclarations
public java.util.Map<VariableNameDeclaration,java.util.List<NameOccurrence>> getVariableDeclarations()
- Description copied from interface:
Scope
- Returns a Map (VariableNameDeclaration->List(NameOccurrence,NameOccurrence)) of declarations that
exist at this scope
-
addVariableNameOccurrence
public NameDeclaration addVariableNameOccurrence(NameOccurrence occurrence)
- Description copied from interface:
Scope
- Adds a NameOccurrence to this scope - only call this after getting
a true back from contains()
-
addDeclaration
public void addDeclaration(VariableNameDeclaration variableDecl)
- Description copied from interface:
Scope
- Add a variable declaration to this scope
-
findVariableHere
public NameDeclaration findVariableHere(NameOccurrence occurrence)
- Specified by:
findVariableHere
in class AbstractScope
-
getName
public java.lang.String getName()
-
toString
public java.lang.String toString()
- Overrides:
toString
in class java.lang.Object
-
Copyright © 2002-2011 InfoEther. All Rights Reserved.