Uses of Class
com.puppycrawl.tools.checkstyle.api.Scope

Packages that use Scope
com.puppycrawl.tools.checkstyle.api Contains the core API to be used to implement checks. 
 

Uses of Scope in com.puppycrawl.tools.checkstyle.api
 

Fields in com.puppycrawl.tools.checkstyle.api declared as Scope
static Scope Scope.ANONINNER
          anon inner scope.
static Scope Scope.NOTHING
          nothing scope.
static Scope Scope.PACKAGE
          package scope.
static Scope Scope.PRIVATE
          private scope.
static Scope Scope.PROTECTED
          protected scope.
static Scope Scope.PUBLIC
          public scope.
 

Methods in com.puppycrawl.tools.checkstyle.api that return Scope
static Scope Scope.getInstance(String aScopeName)
          Scope factory method.
static Scope ScopeUtils.getScopeFromMods(DetailAST aMods)
          Returns the Scope specified by the modifier set.
static Scope ScopeUtils.getSurroundingScope(DetailAST aAST)
          Returns the scope of the surrounding "block".
 

Methods in com.puppycrawl.tools.checkstyle.api with parameters of type Scope
 boolean Scope.isIn(Scope aScope)
          Checks if this scope is a subscope of another scope.
 


Back to the Checkstyle Home Page