Uses of Class
com.puppycrawl.tools.checkstyle.checks.imports.AbstractImportControl
-
Packages that use AbstractImportControl Package Description com.puppycrawl.tools.checkstyle.checks.imports Contains the Imports checks that are bundled with the main distribution. -
-
Uses of AbstractImportControl in com.puppycrawl.tools.checkstyle.checks.imports
Subclasses of AbstractImportControl in com.puppycrawl.tools.checkstyle.checks.imports Modifier and Type Class Description (package private) classFileImportControlRepresents an import rules for a specific file.(package private) classPkgImportControlRepresents a tree of import rules for a specific package.Fields in com.puppycrawl.tools.checkstyle.checks.imports declared as AbstractImportControl Modifier and Type Field Description private AbstractImportControlImportControlCheck. currentImportControlThe package controller for the current file.private AbstractImportControlAbstractImportControl. parentThe parent.Fields in com.puppycrawl.tools.checkstyle.checks.imports with type parameters of type AbstractImportControl Modifier and Type Field Description private java.util.List<AbstractImportControl>PkgImportControl. childrenList of childrenAbstractImportControlobjects.private java.util.Deque<AbstractImportControl>ImportControlLoader. stackUsed to hold theAbstractImportControlobjects.Methods in com.puppycrawl.tools.checkstyle.checks.imports that return AbstractImportControl Modifier and Type Method Description abstract AbstractImportControlAbstractImportControl. locateFinest(java.lang.String forPkg, java.lang.String forFileName)Search down the tree to locate the finest match for a supplied package.AbstractImportControlFileImportControl. locateFinest(java.lang.String forPkg, java.lang.String forFileName)AbstractImportControlPkgImportControl. locateFinest(java.lang.String forPkg, java.lang.String forFileName)Methods in com.puppycrawl.tools.checkstyle.checks.imports with parameters of type AbstractImportControl Modifier and Type Method Description voidPkgImportControl. addChild(AbstractImportControl importControl)Adds new child import control.Constructors in com.puppycrawl.tools.checkstyle.checks.imports with parameters of type AbstractImportControl Constructor Description AbstractImportControl(AbstractImportControl parent, MismatchStrategy strategyOnMismatch)Construct a child node.
-