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

Packages that use FullIdent
com.puppycrawl.tools.checkstyle.api Contains the core API to be used to implement checks. 
com.puppycrawl.tools.checkstyle.checks Contains the checks that are bundled with the main distribution. 
com.puppycrawl.tools.checkstyle.checks.coding Contains the Coding checks that are bundled with the main distribution. 
com.puppycrawl.tools.checkstyle.checks.javadoc Contains the Javadoc checks that are bundled with the main distribution. 
 

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

Methods in com.puppycrawl.tools.checkstyle.api that return FullIdent
static FullIdent FullIdent.createFullIdent(DetailAST aAST)
          Creates a new FullIdent starting from the specified node.
static FullIdent FullIdent.createFullIdentBelow(DetailAST aAST)
          Creates a new FullIdent starting from the child of the specified node.
 

Uses of FullIdent in com.puppycrawl.tools.checkstyle.checks
 

Methods in com.puppycrawl.tools.checkstyle.checks that return FullIdent
 FullIdent AbstractTypeAwareCheck.ClassInfo.getName()
           
static FullIdent CheckUtils.createFullType(DetailAST aTypeAST)
          Creates FullIdent for given type node.
 

Methods in com.puppycrawl.tools.checkstyle.checks with parameters of type FullIdent
protected  java.lang.Class AbstractTypeAwareCheck.tryLoadClass(FullIdent aIdent, java.lang.String aCurrentClass)
          Tries to load class.
protected abstract  void AbstractTypeAwareCheck.logLoadError(FullIdent aIdent)
          Logs error if unable to load class information.
 

Constructors in com.puppycrawl.tools.checkstyle.checks with parameters of type FullIdent
AbstractTypeAwareCheck.ClassInfo(FullIdent aName, java.lang.String aCurrentClass)
          Creates new instance of of class information object.
 

Uses of FullIdent in com.puppycrawl.tools.checkstyle.checks.coding
 

Methods in com.puppycrawl.tools.checkstyle.checks.coding with parameters of type FullIdent
protected  void RedundantThrowsCheck.logLoadError(FullIdent aIdent)
          Logs error if unable to load class information.
 

Uses of FullIdent in com.puppycrawl.tools.checkstyle.checks.javadoc
 

Methods in com.puppycrawl.tools.checkstyle.checks.javadoc with parameters of type FullIdent
protected  void JavadocMethodCheck.logLoadError(FullIdent aIdent)
          Logs error if unable to load class information.
 


Back to the Checkstyle Home Page