public class LeftCurlyCheck extends AbstractOptionCheck<LeftCurlyOption>
Checks the placement of left curly braces on types, methods and
other blocks:
LITERAL_CATCH
, LITERAL_DO
, LITERAL_ELSE
, LITERAL_FINALLY
, LITERAL_FOR
, LITERAL_IF
, LITERAL_SWITCH
, LITERAL_SYNCHRONIZED
, LITERAL_TRY
, LITERAL_WHILE
, STATIC_INIT
.
The policy to verify is specified using the LeftCurlyOption
class and
defaults to LeftCurlyOption.EOL
. Policies LeftCurlyOption.EOL
and LeftCurlyOption.NLOW
take into account property maxLineLength.
The default value for maxLineLength is 80.
An example of how to configure the check is:
<module name="LeftCurly"/>
An example of how to configure the check with policy
LeftCurlyOption.NLOW
and maxLineLength 120 is:
<module name="LeftCurly"> <property name="option" value="nlow"/> <property name="maxLineLength" value="120"/> < /module>
An example of how to configure the check to validate enum definitions:
<module name="LeftCurly"> <property name="ignoreEnums" value="false"/> </module>
Modifier and Type | Field and Description |
---|---|
static String |
MSG_KEY_LINE_BREAK_AFTER
A key is pointing to the warning message text in "messages.properties"
file.
|
static String |
MSG_KEY_LINE_NEW
A key is pointing to the warning message text in "messages.properties"
file.
|
static String |
MSG_KEY_LINE_PREVIOUS
A key is pointing to the warning message text in "messages.properties"
file.
|
SEMICOLON
Constructor and Description |
---|
LeftCurlyCheck()
Creates a default instance and sets the policy to EOL.
|
Modifier and Type | Method and Description |
---|---|
int[] |
getAcceptableTokens()
The configurable token set.
|
int[] |
getDefaultTokens()
Returns the default token a check is interested in.
|
int[] |
getRequiredTokens()
The tokens that this check must be registered for.
|
void |
setIgnoreEnums(boolean ignoreEnums)
Sets whether check should ignore enums when left curly brace policy is EOL.
|
void |
setMaxLineLength(int maxLineLength)
Deprecated.
since 6.10 release, option is not required for the Check.
|
void |
visitToken(DetailAST ast)
Called to process a token.
|
getAbstractOption, setOption
beginTree, destroy, finishTree, getClassLoader, getFileContents, getLine, getLines, getTabWidth, getTokenNames, init, isCommentNodesRequired, leaveToken, log, log, setClassLoader, setFileContents, setMessages, setTabWidth, setTokens
getCustomMessages, getId, getMessageBundle, getSeverity, getSeverityLevel, log, setId, setSeverity
configure, contextualize, finishLocalSetup, getConfiguration, setupChild
public static final String MSG_KEY_LINE_NEW
public static final String MSG_KEY_LINE_PREVIOUS
public static final String MSG_KEY_LINE_BREAK_AFTER
public LeftCurlyCheck()
@Deprecated public void setMaxLineLength(int maxLineLength)
maxLineLength
- the max allowed line lengthpublic void setIgnoreEnums(boolean ignoreEnums)
ignoreEnums
- check's option for ignoring enums.public int[] getDefaultTokens()
Check
getDefaultTokens
in class Check
TokenTypes
public int[] getAcceptableTokens()
Check
getAcceptableTokens
in class Check
TokenTypes
public int[] getRequiredTokens()
Check
getRequiredTokens
in class Check
TokenTypes
public void visitToken(DetailAST ast)
Check
visitToken
in class Check
ast
- the token to processCopyright © 2001–2015. All rights reserved.