Class AbstractParenPadCheck
java.lang.Object
com.puppycrawl.tools.checkstyle.api.AutomaticBean
com.puppycrawl.tools.checkstyle.api.AbstractViolationReporter
com.puppycrawl.tools.checkstyle.api.AbstractCheck
com.puppycrawl.tools.checkstyle.checks.whitespace.AbstractParenPadCheck
- All Implemented Interfaces:
Configurable,Contextualizable
- Direct Known Subclasses:
ParenPadCheck,TypecastParenPadCheck
Abstract class for checking the padding of parentheses. That is whether a space is required after a left parenthesis and before a right parenthesis, or such spaces are forbidden.
-
Nested Class Summary
Nested classes/interfaces inherited from class com.puppycrawl.tools.checkstyle.api.AutomaticBean
AutomaticBean.OutputStreamOptions -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final charClose parenthesis literal.static final StringA key is pointing to the warning message text in "messages.properties" file.static final StringA key is pointing to the warning message text in "messages.properties" file.static final StringA key is pointing to the warning message text in "messages.properties" file.static final StringA key is pointing to the warning message text in "messages.properties" file.private static final charOpen parenthesis literal.private PadOptionThe policy to enforce. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected voidprocessLeft(DetailAST ast) Process a token representing a left parentheses.protected voidprocessRight(DetailAST ast) Process a token representing a right parentheses.voidSet the option to enforce.Methods inherited from class com.puppycrawl.tools.checkstyle.api.AbstractCheck
beginTree, clearViolations, destroy, finishTree, getAcceptableTokens, getDefaultTokens, getFileContents, getLine, getLineCodePoints, getLines, getRequiredTokens, getTabWidth, getTokenNames, getViolations, init, isCommentNodesRequired, leaveToken, log, log, log, setFileContents, setTabWidth, setTokens, visitTokenMethods inherited from class com.puppycrawl.tools.checkstyle.api.AbstractViolationReporter
finishLocalSetup, getCustomMessages, getId, getMessageBundle, getSeverity, getSeverityLevel, setId, setSeverityMethods inherited from class com.puppycrawl.tools.checkstyle.api.AutomaticBean
configure, contextualize, getConfiguration, setupChild
-
Field Details
-
MSG_WS_FOLLOWED
A key is pointing to the warning message text in "messages.properties" file.- See Also:
-
MSG_WS_NOT_FOLLOWED
A key is pointing to the warning message text in "messages.properties" file.- See Also:
-
MSG_WS_PRECEDED
A key is pointing to the warning message text in "messages.properties" file.- See Also:
-
MSG_WS_NOT_PRECEDED
A key is pointing to the warning message text in "messages.properties" file.- See Also:
-
OPEN_PARENTHESIS
private static final char OPEN_PARENTHESISOpen parenthesis literal.- See Also:
-
CLOSE_PARENTHESIS
private static final char CLOSE_PARENTHESISClose parenthesis literal.- See Also:
-
option
The policy to enforce.
-
-
Constructor Details
-
AbstractParenPadCheck
public AbstractParenPadCheck()
-
-
Method Details
-
setOption
Set the option to enforce.- Parameters:
optionStr- string to decode option from- Throws:
IllegalArgumentException- if unable to decode
-
processLeft
Process a token representing a left parentheses.- Parameters:
ast- the token representing a left parentheses
-
processRight
Process a token representing a right parentheses.- Parameters:
ast- the token representing a right parentheses
-