com.puppycrawl.tools.checkstyle.checks.blocks
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
.
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>
Constructor and Description |
---|
LeftCurlyCheck()
Creates a default instance and sets the policy to EOL.
|
Modifier and Type | Method and Description |
---|---|
int[] |
getDefaultTokens()
Returns the default token a check is interested in.
|
void |
setMaxLineLength(int aMaxLineLength)
Sets the maximum line length used in calculating the placement of the
left curly brace.
|
void |
visitToken(DetailAST aAST)
Called to process a token.
|
getAbstractOption, setOption
beginTree, destroy, finishTree, getAcceptableTokens, getClassLoader, getFileContents, getLines, getRequiredTokens, getTabWidth, getTokenNames, init, leaveToken, log, log, setClassLoader, setFileContents, setMessages, setTabWidth, setTokens
getCustomMessages, getId, getMessageBundle, getSeverity, getSeverityLevel, log, setId, setSeverity
configure, contextualize, finishLocalSetup, getConfiguration, setupChild
public LeftCurlyCheck()
public void setMaxLineLength(int aMaxLineLength)
aMaxLineLength
- the max allowed line lengthpublic int[] getDefaultTokens()
Check
getDefaultTokens
in class Check
TokenTypes
public void visitToken(DetailAST aAST)
Check
visitToken
in class Check
aAST
- the token to processCopyright © 2001-2014. All Rights Reserved.