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
 IndentLevel ArrayInitHandler.getLevelImpl()
          Compute the indentation amount for this handler.
protected  IndentLevel ArrayInitHandler.getChildrenExpectedLevel()
           
 IndentLevel AssignHandler.suggestedChildLevel(ExpressionHandler aChild)
          Indentation level suggested for a child element. Children don't have to respect this, but most do.
protected  IndentLevel BlockParentHandler.getChildrenExpectedLevel()
           
 IndentLevel CaseHandler.getLevelImpl()
          Compute the indentation amount for this handler.
 IndentLevel CaseHandler.suggestedChildLevel(ExpressionHandler aChild)
          Indentation level suggested for a child element.
 IndentLevel ExpressionHandler.getLevel()
          Get the indentation amount for this handler.
protected  IndentLevel ExpressionHandler.getLevelImpl()
          Compute the indentation amount for this handler.
 IndentLevel ExpressionHandler.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 IfHandler.getLevelImpl()
          Compute the indentation amount for this handler.
 IndentLevel LabelHandler.getLevelImpl()
          Compute the indentation amount for this handler.
 IndentLevel MethodCallHandler.getLevelImpl()
          Compute the indentation amount for this handler.
 IndentLevel MethodCallHandler.suggestedChildLevel(ExpressionHandler aChild)
          Indentation level suggested for a child element.
 IndentLevel ObjectBlockHandler.getLevelImpl()
          Compute the indentation amount for this handler.
 IndentLevel PrimordialHandler.suggestedChildLevel(ExpressionHandler aChild)
          Indentation level suggested for a child element.
 IndentLevel PrimordialHandler.getLevelImpl()
          Compute the indentation amount for this handler.
 IndentLevel SlistHandler.suggestedChildLevel(ExpressionHandler aChild)
          Indentation level suggested for a child element.
 IndentLevel TryHandler.suggestedChildLevel(ExpressionHandler aChild)
          Indentation level suggested for a child element.
 

Methods in com.puppycrawl.tools.checkstyle.checks.indentation with parameters of type IndentLevel
protected  void ExpressionHandler.logError(DetailAST aAst, java.lang.String aSubtypeName, int aActualLevel, IndentLevel aExpectedLevel)
          Log an indentation error.
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.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.
 void IndentLevel.addAcceptedIndent(IndentLevel aIndent)
          Adds one more acceptable indentation level.
 

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