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

Packages that use ReducedToken
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 ReducedToken in edu.rice.cs.drjava.model.definitions.reducedmodel
 

Subclasses of ReducedToken in edu.rice.cs.drjava.model.definitions.reducedmodel
(package private)  class Brace
          This class acts as the representation of a brace in the reduced view.
(package private)  class Gap
          A subclass of ReducedToken that represents non-special characters.
 

Methods in edu.rice.cs.drjava.model.definitions.reducedmodel that return ReducedToken
protected  ReducedToken AbstractReducedModel.current()
          Get the ReducedToken currently pointed at by the cursor.
 ReducedToken BraceReduction.currentToken()
          Get the current token in the BraceReduction.
 ReducedToken ReducedModelControl.currentToken()
          Get the token currently pointed at by the cursor.
 ReducedToken ReducedModelControl.prevItem()
          Get the previous token.
 ReducedToken ReducedModelControl.nextItem()
          Get the next token.
 

Methods in edu.rice.cs.drjava.model.definitions.reducedmodel with parameters of type ReducedToken
abstract  boolean ReducedToken.isMatch(ReducedToken other)
          Determine if the given token is a open/close match with this.
 boolean Brace.isMatch(ReducedToken other)
          Check if two braces match.
 boolean Gap.isMatch(ReducedToken other)
          put your documentation comment here
(package private)  int ReducedModelControl.getSize(ReducedToken rmbToken, ReducedToken rmcToken)