Class ExecutableStatementCountCheck
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.sizes.ExecutableStatementCountCheck
- All Implemented Interfaces:
- Configurable,- Contextualizable
 Restricts the number of executable statements to a specified limit.
 
- Since:
- 3.2
- 
Nested Class SummaryNested ClassesModifier and TypeClassDescriptionprivate static final classClass to encapsulate counting information about one member.Nested classes/interfaces inherited from class com.puppycrawl.tools.checkstyle.AbstractAutomaticBeanAbstractAutomaticBean.OutputStreamOptions
- 
Field SummaryFieldsModifier and TypeFieldDescriptionCurrent method context.private final Deque<ExecutableStatementCountCheck.Context>Stack of method contexts.private static final intDefault threshold.private intSpecify the maximum threshold allowed.static final StringA key is pointing to the warning message text in "messages.properties" file.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidCalled before the starting to process a tree.int[]The configurable token set.int[]Returns the default token a check is interested in.int[]The tokens that this check must be registered for.private static booleanisContainerNode(DetailAST node) Check if the node is of type ctor (compact or canonical), instance/ static initializer, method definition or lambda.private voidProcess the end of a container node.voidleaveToken(DetailAST ast) Called after all the child nodes have been process.voidsetMax(int max) Setter to specify the maximum threshold allowed.private voidProcess the start of the container node.private voidvisitSlist(DetailAST ast) Process the end of a statement list.voidvisitToken(DetailAST ast) Called to process a token.Methods inherited from class com.puppycrawl.tools.checkstyle.api.AbstractCheckclearViolations, destroy, finishTree, getFileContents, getFilePath, getLine, getLineCodePoints, getLines, getTabWidth, getTokenNames, getViolations, init, isCommentNodesRequired, log, log, log, setFileContents, setTabWidth, setTokensMethods inherited from class com.puppycrawl.tools.checkstyle.api.AbstractViolationReporterfinishLocalSetup, getCustomMessages, getId, getMessageBundle, getSeverity, getSeverityLevel, setId, setSeverityMethods inherited from class com.puppycrawl.tools.checkstyle.AbstractAutomaticBeanconfigure, contextualize, getConfiguration, setupChild
- 
Field Details- 
MSG_KEYA key is pointing to the warning message text in "messages.properties" file.- See Also:
 
- 
DEFAULT_MAXDefault threshold.- See Also:
 
- 
contextStackStack of method contexts.
- 
maxSpecify the maximum threshold allowed.
- 
contextCurrent method context.
 
- 
- 
Constructor Details- 
ExecutableStatementCountCheckpublic ExecutableStatementCountCheck()Constructs aExecutableStatementCountCheck.
 
- 
- 
Method Details- 
getDefaultTokensDescription 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 class- AbstractCheck
- Returns:
- the default tokens
- See Also:
 
- 
getRequiredTokensDescription copied from class:AbstractCheckThe tokens that this check must be registered for.- Specified by:
- getRequiredTokensin class- AbstractCheck
- Returns:
- the token set this must be registered for.
- See Also:
 
- 
getAcceptableTokensDescription 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 class- AbstractCheck
- Returns:
- the token set this check is designed for.
- See Also:
 
- 
setMaxSetter to specify the maximum threshold allowed.- Parameters:
- max- the maximum threshold.
- Since:
- 3.2
 
- 
beginTreeDescription copied from class:AbstractCheckCalled before the starting to process a tree. Ideal place to initialize information that is to be collected whilst processing a tree.- Overrides:
- beginTreein class- AbstractCheck
- Parameters:
- rootAST- the root of the tree
 
- 
visitTokenDescription copied from class:AbstractCheckCalled to process a token.- Overrides:
- visitTokenin class- AbstractCheck
- Parameters:
- ast- the token to process
 
- 
leaveTokenDescription copied from class:AbstractCheckCalled after all the child nodes have been process.- Overrides:
- leaveTokenin class- AbstractCheck
- Parameters:
- ast- the token leaving
 
- 
visitContainerNodeProcess the start of the container node.- Parameters:
- ast- the token representing the container node.
 
- 
leaveContainerNodeProcess the end of a container node.- Parameters:
- ast- the token representing the container node.
 
- 
visitSlistProcess the end of a statement list.- Parameters:
- ast- the token representing the statement list.
 
- 
isContainerNodeCheck if the node is of type ctor (compact or canonical), instance/ static initializer, method definition or lambda.- Parameters:
- node- AST node we are checking
- Returns:
- true if node is of the given types
 
 
-