Class SlistHandler
java.lang.Object
com.puppycrawl.tools.checkstyle.checks.indentation.AbstractExpressionHandler
com.puppycrawl.tools.checkstyle.checks.indentation.BlockParentHandler
com.puppycrawl.tools.checkstyle.checks.indentation.SlistHandler
Handler for a list of statements.
- 
Field SummaryFields
- 
Constructor SummaryConstructorsConstructorDescriptionSlistHandler(IndentationCheck indentCheck, DetailAST ast, AbstractExpressionHandler parent) Construct an instance of this handler with the given indentation check, abstract syntax tree, and parent handler.
- 
Method SummaryModifier and TypeMethodDescriptionvoidCheck the indentation of the expression we are handling.protected DetailASTGet the left curly brace portion of the expression we are handling.protected DetailASTGet the child element representing the list of statements.protected DetailASTGet the right curly brace portion of the expression we are handling.Indentation level suggested for a child element.protected DetailASTGet the top level expression being managed by this handler.private booleanDetermine if the expression we are handling has a block parent.private booleanChecks if SLIST node is placed at the same line as CASE_GROUP node.Methods inherited from class com.puppycrawl.tools.checkstyle.checks.indentation.BlockParentHandlercanChildrenBeNested, checkTopLevelToken, curlyIndent, getCheckedChildren, getChildrenExpectedIndent, getNonListChildMethods inherited from class com.puppycrawl.tools.checkstyle.checks.indentation.AbstractExpressionHandlercheckChildren, checkExpressionSubtree, checkLeftParen, checkModifiers, checkRightParen, checkWrappingIndentation, checkWrappingIndentation, expandedTabsColumnNo, findSubtreeAst, getBasicOffset, getBraceAdjustment, getFirstAstNode, getFirstLine, getFirstToken, getIndent, getIndentCheck, getIndentImpl, getLineStart, getLineStart, getMainAst, getParent, isOnStartOfLine, logError, logError, shouldIncreaseIndent
- 
Field Details- 
PARENT_TOKEN_TYPESParent token types.
 
- 
- 
Constructor Details- 
SlistHandlerConstruct an instance of this handler with the given indentation check, abstract syntax tree, and parent handler.- Parameters:
- indentCheck- the indentation check
- ast- the abstract syntax tree
- parent- the parent handler
 
 
- 
- 
Method Details- 
getSuggestedChildIndentDescription copied from class:AbstractExpressionHandlerIndentation level suggested for a child element. Children don't have to respect this, but most do.- Overrides:
- getSuggestedChildIndentin class- BlockParentHandler
- Parameters:
- child- child AST (so suggestion level can differ based on child type)
- Returns:
- suggested indentation for child
 
- 
getListChildDescription copied from class:BlockParentHandlerGet the child element representing the list of statements.- Overrides:
- getListChildin class- BlockParentHandler
- Returns:
- the statement list child
 
- 
getLeftCurlyDescription copied from class:BlockParentHandlerGet the left curly brace portion of the expression we are handling.- Overrides:
- getLeftCurlyin class- BlockParentHandler
- Returns:
- the left curly brace expression
 
- 
getRightCurlyDescription copied from class:BlockParentHandlerGet the right curly brace portion of the expression we are handling.- Overrides:
- getRightCurlyin class- BlockParentHandler
- Returns:
- the right curly brace expression
 
- 
getTopLevelAstDescription copied from class:BlockParentHandlerGet the top level expression being managed by this handler.- Overrides:
- getTopLevelAstin class- BlockParentHandler
- Returns:
- the top level expression
 
- 
hasBlockParentDetermine if the expression we are handling has a block parent.- Returns:
- true if it does, false otherwise
 
- 
checkIndentationDescription copied from class:AbstractExpressionHandlerCheck the indentation of the expression we are handling.- Overrides:
- checkIndentationin class- BlockParentHandler
 
- 
isSameLineCaseGroupChecks if SLIST node is placed at the same line as CASE_GROUP node.- Returns:
- true, if SLIST node is places at the same line as CASE_GROUP node.
 
 
-