Uses of Interface
net.sourceforge.pmd.lang.symboltable.Scope
-
Packages that use Scope Package Description net.sourceforge.pmd.lang.symboltable -
-
Uses of Scope in net.sourceforge.pmd.lang.symboltable
Classes in net.sourceforge.pmd.lang.symboltable that implement Scope Modifier and Type Class Description class
AbstractScope
Base class for anyScope
.Methods in net.sourceforge.pmd.lang.symboltable with type parameters of type Scope Modifier and Type Method Description <T extends Scope>
TAbstractScope. getEnclosingScope(Class<T> clazz)
<T extends Scope>
TScope. getEnclosingScope(Class<T> clazz)
Helper method that goes up the parent scopes to find a scope of the specified typeMethods in net.sourceforge.pmd.lang.symboltable that return Scope Modifier and Type Method Description Scope
AbstractScope. getParent()
Scope
Scope. getParent()
Retrieves this scope's parentScope
AbstractNameDeclaration. getScope()
Scope
NameDeclaration. getScope()
Gets the scope in which this name has been declared.Scope
ScopedNode. getScope()
Methods in net.sourceforge.pmd.lang.symboltable with parameters of type Scope Modifier and Type Method Description void
AbstractScope. setParent(Scope parent)
void
Scope. setParent(Scope parent)
Points this scope to its parent
-