Uses of Class
edu.rice.cs.drjava.model.definitions.reducedmodel.IndentInfo

Packages that use IndentInfo
edu.rice.cs.drjava.model.definitions Provides the data model for storing Java source code. 
edu.rice.cs.drjava.model.definitions.reducedmodel This package contains the code for the "reduced model": a model of the text in the definitions pane designed for quickly locating matching parentheses, quotation marks, and comment delimiters. 
 

Uses of IndentInfo in edu.rice.cs.drjava.model.definitions
 

Methods in edu.rice.cs.drjava.model.definitions that return IndentInfo
 IndentInfo DefinitionsDocument.getIndentInformation()
           
 

Methods in edu.rice.cs.drjava.model.definitions with parameters of type IndentInfo
private  void IndentTest._assertIndentInfo(IndentInfo ii, String braceType, int distToNewline, int distToBrace, int distToPrevNewline)
           
 

Uses of IndentInfo in edu.rice.cs.drjava.model.definitions.reducedmodel
 

Fields in edu.rice.cs.drjava.model.definitions.reducedmodel declared as IndentInfo
private  IndentInfo IndentInfoTest._info
           
 

Methods in edu.rice.cs.drjava.model.definitions.reducedmodel that return IndentInfo
 IndentInfo BraceReduction.getIndentInformation()
          Gets the distance to the enclosing brace.
 IndentInfo ReducedModelControl.getIndentInformation()
          Returns an IndentInfo containing the following information: - distance to the previous newline ( start of this line) - distance to the brace enclosing the beginning of the current line - distance to the beginning of the line containing that brace
 

Methods in edu.rice.cs.drjava.model.definitions.reducedmodel with parameters of type IndentInfo
(package private)  void ReducedModelComment.getDistToPreviousNewline(IndentInfo braceInfo)
          Dist to Previous newline will be -1 if no newline.
(package private)  void ReducedModelComment.getDistToIndentNewline(IndentInfo braceInfo)
           
(package private)  void ReducedModelComment.getDistToCurrentBraceNewline(IndentInfo braceInfo)
          Computes the distance to the beginning of the line containing the brace enclosing the current location.
protected  void ReducedModelBrace.getDistToEnclosingBrace(IndentInfo braceInfo)
           
protected  void ReducedModelBrace.getDistToEnclosingBraceCurrent(IndentInfo braceInfo)
          Find the enclosing brace enclosing our current location.