Class NoLineWrapCheck
java.lang.Object
com.puppycrawl.tools.checkstyle.AbstractAutomaticBean
com.puppycrawl.tools.checkstyle.api.AbstractViolationReporter
com.puppycrawl.tools.checkstyle.api.AbstractCheck
com.puppycrawl.tools.checkstyle.checks.whitespace.NoLineWrapCheck
- All Implemented Interfaces:
Configurable,Contextualizable
Checks that chosen statements are not line-wrapped.
By default, this Check restricts wrapping import and package statements,
but it's possible to check any statement.
- Since:
- 5.8
-
Nested Class Summary
Nested classes/interfaces inherited from class com.puppycrawl.tools.checkstyle.AbstractAutomaticBean
AbstractAutomaticBean.OutputStreamOptions -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringA key is pointing to the warning message text in "messages.properties" file.private booleanProperty that defines whether annotations on the previous line should be checked as errors. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionint[]The configurable token set.int[]Returns the default token a check is interested in.int[]The tokens that this check must be registered for.voidsetSkipAnnotations(boolean shouldSkipAnnotations) Setter to specify whether annotations on the previous line should be checked as errors.private booleanshouldReportViolation(boolean isOnSameLine, boolean containsAnnotation) Determines whether a violation should be logged based on the AST node properties.voidvisitToken(DetailAST ast) Called to process a token.Methods inherited from class com.puppycrawl.tools.checkstyle.api.AbstractCheck
beginTree, clearViolations, destroy, finishTree, getFileContents, getFilePath, getLine, getLineCodePoints, getLines, getTabWidth, getTokenNames, getViolations, init, isCommentNodesRequired, leaveToken, log, log, log, setFileContents, setTabWidth, setTokensMethods inherited from class com.puppycrawl.tools.checkstyle.api.AbstractViolationReporter
finishLocalSetup, getCustomMessages, getId, getMessageBundle, getSeverity, getSeverityLevel, setId, setSeverityMethods inherited from class com.puppycrawl.tools.checkstyle.AbstractAutomaticBean
configure, contextualize, getConfiguration, setupChild
-
Field Details
-
MSG_KEY
A key is pointing to the warning message text in "messages.properties" file.- See Also:
-
skipAnnotations
Property that defines whether annotations on the previous line should be checked as errors.
-
-
Constructor Details
-
NoLineWrapCheck
public NoLineWrapCheck()
-
-
Method Details
-
setSkipAnnotations
Setter to specify whether annotations on the previous line should be checked as errors.- Parameters:
shouldSkipAnnotations- whether to skip annotations on the previous line.- Since:
- 12.3.0
-
getDefaultTokens
Description copied from class:AbstractCheckReturns the default token a check is interested in. Only used if the configuration for a check does not define the tokens.- Specified by:
getDefaultTokensin classAbstractCheck- Returns:
- the default tokens
- See Also:
-
getAcceptableTokens
Description copied from class:AbstractCheckThe configurable token set. Used to protect Checks against malicious users who specify an unacceptable token set in the configuration file. The default implementation returns the check's default tokens.- Specified by:
getAcceptableTokensin classAbstractCheck- Returns:
- the token set this check is designed for.
- See Also:
-
getRequiredTokens
Description copied from class:AbstractCheckThe tokens that this check must be registered for.- Specified by:
getRequiredTokensin classAbstractCheck- Returns:
- the token set this must be registered for.
- See Also:
-
visitToken
Description copied from class:AbstractCheckCalled to process a token.- Overrides:
visitTokenin classAbstractCheck- Parameters:
ast- the token to process
-
shouldReportViolation
Determines whether a violation should be logged based on the AST node properties.- Parameters:
isOnSameLine- indicates if the AST node and its last child on the same linecontainsAnnotation- indicates if the AST node is annotated with annotation- Returns:
trueif violation should be logged,falseotherwise
-