net.sourceforge.pmd.symboltable
Class MethodScope

java.lang.Object
  extended bynet.sourceforge.pmd.symboltable.AbstractScope
      extended bynet.sourceforge.pmd.symboltable.MethodScope
All Implemented Interfaces:
Scope

public class MethodScope
extends AbstractScope


Field Summary
protected  java.util.Map variableNames
           
 
Constructor Summary
MethodScope(SimpleNode node)
           
 
Method Summary
 void addDeclaration(VariableNameDeclaration variableDecl)
          Add a variable declaration to this scope
 NameDeclaration addVariableNameOccurrence(NameOccurrence occurrence)
          Adds a NameOccurrence to this scope - only call this after getting a true back from contains()
 NameDeclaration findVariableHere(NameOccurrence occurrence)
           
 MethodScope getEnclosingMethodScope()
          Goes searching up the tree for this scope's enclosing SourceFileScope This is handy if you're buried down in a LocalScope and need to hop up to the MethodScope to find a method parameter.
 java.lang.String getName()
           
 java.util.Map getVariableDeclarations()
          Returns a Map (VariableNameDeclaration->List(NameOccurrence,NameOccurrence)) of declarations that exist at this scope
 java.lang.String toString()
           
 
Methods inherited from class net.sourceforge.pmd.symboltable.AbstractScope
addDeclaration, addDeclaration, contains, getClassDeclarations, getEnclosingClassScope, getEnclosingSourceFileScope, getParent, glomNames, setParent
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

variableNames

protected java.util.Map variableNames
Constructor Detail

MethodScope

public MethodScope(SimpleNode node)
Method Detail

getEnclosingMethodScope

public MethodScope getEnclosingMethodScope()
Description copied from interface: Scope
Goes searching up the tree for this scope's enclosing SourceFileScope 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 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()


Copyright © 2002-2006 InfoEther. All Rights Reserved.