Uses of Class
com.puppycrawl.tools.checkstyle.api.FullIdent
-
Packages that use FullIdent Package Description 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.imports Contains the Imports checks that are bundled with the main distribution.com.puppycrawl.tools.checkstyle.utils Contains utils classes for checkstyle. -
-
Uses of FullIdent in com.puppycrawl.tools.checkstyle.api
Methods in com.puppycrawl.tools.checkstyle.api that return FullIdent Modifier and Type Method Description static FullIdent
FullIdent. createFullIdent(DetailAST ast)
Creates a new FullIdent starting from the specified node.static FullIdent
FullIdent. createFullIdentBelow(DetailAST ast)
Creates a new FullIdent starting from the child of the specified node.Methods in com.puppycrawl.tools.checkstyle.api with parameters of type FullIdent Modifier and Type Method Description private static void
FullIdent. extractFullIdent(FullIdent full, DetailAST ast)
Recursively extract a FullIdent. -
Uses of FullIdent in com.puppycrawl.tools.checkstyle.checks
Fields in com.puppycrawl.tools.checkstyle.checks declared as FullIdent Modifier and Type Field Description private FullIdent
AbstractTypeAwareCheck. packageFullIdent
Deprecated.Full identifier for package of the method.private FullIdent
UncommentedMainCheck. packageName
Current package.Constructors in com.puppycrawl.tools.checkstyle.checks with parameters of type FullIdent Constructor Description Token(FullIdent fullIdent)
Converts FullIdent to Token. -
Uses of FullIdent in com.puppycrawl.tools.checkstyle.checks.coding
Fields in com.puppycrawl.tools.checkstyle.checks.coding with type parameters of type FullIdent Modifier and Type Field Description private java.util.Set<FullIdent>
IllegalInstantiationCheck. imports
The imports for the file. -
Uses of FullIdent in com.puppycrawl.tools.checkstyle.checks.imports
Fields in com.puppycrawl.tools.checkstyle.checks.imports with type parameters of type FullIdent Modifier and Type Field Description private java.util.Set<FullIdent>
RedundantImportCheck. imports
Set of the imports.private java.util.Set<FullIdent>
UnusedImportsCheck. imports
Set of the imports.private java.util.Set<FullIdent>
RedundantImportCheck. staticImports
Set of static imports.Methods in com.puppycrawl.tools.checkstyle.checks.imports with parameters of type FullIdent Modifier and Type Method Description private void
ImportOrderCheck. doVisitToken(FullIdent ident, boolean isStatic, boolean previous)
Shares processing... -
Uses of FullIdent in com.puppycrawl.tools.checkstyle.utils
Methods in com.puppycrawl.tools.checkstyle.utils that return FullIdent Modifier and Type Method Description static FullIdent
CheckUtils. createFullType(DetailAST typeAST)
CreatesFullIdent
for given type node.private static FullIdent
CheckUtils. createFullTypeNoArrays(DetailAST typeAST)
Returns FullIndent for given type.
-