java.lang.Object
com.puppycrawl.tools.checkstyle.api.AutomaticBean
com.puppycrawl.tools.checkstyle.api.AbstractViolationReporter
com.puppycrawl.tools.checkstyle.api.Check
com.puppycrawl.tools.checkstyle.checks.imports.RedundantImportCheck
- All Implemented Interfaces:
- com.puppycrawl.tools.checkstyle.api.Configurable, com.puppycrawl.tools.checkstyle.api.Contextualizable
- public class RedundantImportCheck
- extends com.puppycrawl.tools.checkstyle.api.Check
Checks for imports that are redundant. An import statement is
considered redundant if:
- It is a duplicate of another import. This is, when a class is imported
more than once.
- The class imported is from the
java.lang package.
For example importing java.lang.String.
- The class imported is from the same package.
An example of how to configure the check is:
<module name="RedundantImport"/>
- Version:
- 1.0
| Fields inherited from class com.puppycrawl.tools.checkstyle.api.Check |
|
| Fields inherited from class com.puppycrawl.tools.checkstyle.api.AutomaticBean |
|
| Methods inherited from class com.puppycrawl.tools.checkstyle.api.Check |
destroy, finishTree, getAcceptableTokens, getClassLoader, getFileContents, getLines, getRequiredTokens, getTabWidth, getTokenNames, init, leaveToken, log, log, setClassLoader, setFileContents, setMessages, setTabWidth, setTokens |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
mPkgName
private java.lang.String mPkgName
- name of package in file
mImports
private final java.util.Set mImports
- set of the imports
RedundantImportCheck
public RedundantImportCheck()
beginTree
public void beginTree(com.puppycrawl.tools.checkstyle.api.DetailAST aRootAST)
- Description copied from class:
com.puppycrawl.tools.checkstyle.api.Check
- Called before the starting to process a tree. Ideal place to initialise
information that is to be collected whilst processing a tree.
getDefaultTokens
public int[] getDefaultTokens()
- Description copied from class:
com.puppycrawl.tools.checkstyle.api.Check
- Returns the default token a check is interested in. Only used if the
configuration for a check does not define the tokens.
visitToken
public void visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST aAST)
- Description copied from class:
com.puppycrawl.tools.checkstyle.api.Check
- Called to process a token.
fromPackage
private static boolean fromPackage(java.lang.String aImport,
java.lang.String aPkg)
- Determines if an import statement is for types from a specified package.