Uses of Class
com.puppycrawl.tools.checkstyle.checks.indentation.IndentLevel

Packages that use IndentLevel
com.puppycrawl.tools.checkstyle.checks.indentation Contains all classes required for the indentation check. 
 

Uses of IndentLevel in com.puppycrawl.tools.checkstyle.checks.indentation
 

Methods in com.puppycrawl.tools.checkstyle.checks.indentation that return IndentLevel
protected  IndentLevel BlockParentHandler.getChildrenExpectedLevel()
           
protected  IndentLevel ArrayInitHandler.getChildrenExpectedLevel()
          
 IndentLevel ExpressionHandler.getLevel()
          Get the indentation amount for this handler.
protected  IndentLevel LabelHandler.getLevelImpl()
          Compute the indentation amount for this handler.
protected  IndentLevel ExpressionHandler.getLevelImpl()
          Compute the indentation amount for this handler.
protected  IndentLevel NewHandler.getLevelImpl()
          Compute the indentation amount for this handler.
protected  IndentLevel CaseHandler.getLevelImpl()
          Compute the indentation amount for this handler.
protected  IndentLevel PrimordialHandler.getLevelImpl()
          Compute the indentation amount for this handler.
protected  IndentLevel MethodCallHandler.getLevelImpl()
          Compute the indentation amount for this handler.
protected  IndentLevel ObjectBlockHandler.getLevelImpl()
          Compute the indentation amount for this handler.
protected  IndentLevel IfHandler.getLevelImpl()
          Compute the indentation amount for this handler.
protected  IndentLevel ArrayInitHandler.getLevelImpl()
          Compute the indentation amount for this handler.
 IndentLevel AssignHandler.suggestedChildLevel(ExpressionHandler aChild)
          Indentation level suggested for a child element.
 IndentLevel TryHandler.suggestedChildLevel(ExpressionHandler aChild)
          Indentation level suggested for a child element.
 IndentLevel ExpressionHandler.suggestedChildLevel(ExpressionHandler aChild)
          Indentation level suggested for a child element.
 IndentLevel BlockParentHandler.suggestedChildLevel(ExpressionHandler aChild)
          Indentation level suggested for a child element.
 IndentLevel CaseHandler.suggestedChildLevel(ExpressionHandler aChild)
          Indentation level suggested for a child element.
 IndentLevel SlistHandler.suggestedChildLevel(ExpressionHandler aChild)
          Indentation level suggested for a child element.
 IndentLevel PrimordialHandler.suggestedChildLevel(ExpressionHandler aChild)
          Indentation level suggested for a child element.
 IndentLevel MethodCallHandler.suggestedChildLevel(ExpressionHandler aChild)
          Indentation level suggested for a child element.
 IndentLevel ForHandler.suggestedChildLevel(ExpressionHandler aChild)
          Indentation level suggested for a child element.
 IndentLevel IfHandler.suggestedChildLevel(ExpressionHandler aChild)
          Indentation level suggested for a child element.
 IndentLevel MemberDefHandler.suggestedChildLevel(ExpressionHandler aChild)
          Indentation level suggested for a child element.
 

Methods in com.puppycrawl.tools.checkstyle.checks.indentation with parameters of type IndentLevel
 void IndentLevel.addAcceptedIndent(IndentLevel aIndent)
          Adds one more acceptable indentation level.
protected  void ExpressionHandler.checkChildren(DetailAST aParent, int[] aTokenTypes, IndentLevel aStartLevel, boolean aFirstLineMatches, boolean aAllowNesting)
          Check the indent level of the children of the specified parent expression.
protected  void ExpressionHandler.checkExpressionSubtree(DetailAST aTree, IndentLevel aLevel, boolean aFirstLineMatches, boolean aAllowNesting)
          Check the indentation level for an expression subtree.
protected  void ExpressionHandler.checkLinesIndent(int aStartLine, int aEndLine, IndentLevel aIndentLevel)
          Check the indentation of consecutive lines for the expression we are handling.
protected  void ExpressionHandler.logError(DetailAST aAst, String aSubtypeName, int aActualLevel, IndentLevel aExpectedLevel)
          Log an indentation error.
 

Constructors in com.puppycrawl.tools.checkstyle.checks.indentation with parameters of type IndentLevel
IndentLevel(IndentLevel aBase, int aOffset)
          Creates new instance for nested structure.
 


Back to the Checkstyle Home Page