Uses of Interface
edu.rice.cs.drjava.model.IDocumentRegion

Packages that use IDocumentRegion
edu.rice.cs.drjava.model The model package is responsible for the majority of the logic and state in DrJava. 
edu.rice.cs.drjava.model.debug Contains the code for DrJava's JPDA-based debugger. 
edu.rice.cs.drjava.model.debug.jpda   
edu.rice.cs.drjava.ui The ui package contains classes for the default user interface for DrJava. 
 

Uses of IDocumentRegion in edu.rice.cs.drjava.model
 

Classes in edu.rice.cs.drjava.model with type parameters of type IDocumentRegion
 interface RegionManager<R extends IDocumentRegion>
          Interface for a region manager.
 interface RegionManagerListener<R extends IDocumentRegion>
          Any class which wants to listen to DocumentRegion events fired by a RegionManager should implement this interface and use RegionManager's addListener() method.
 

Subinterfaces of IDocumentRegion in edu.rice.cs.drjava.model
 interface OrderedDocumentRegion
          Interface supported by all document regions used in search results, bookmarks, and breakpoints (e.g., region classes other than DummyDocumentRegion and BrowserDocumentRegion).
 

Classes in edu.rice.cs.drjava.model that implement IDocumentRegion
 class BrowserDocumentRegion
          Class for document regions that totally ordered by allocation chronology.
 class DocumentRegion
          Class for a simple document region that only records region offsets, not positions.
 class MovingDocumentRegion
          Class for a document region that moves with changes in the document; it also includes a lazy tool-tip and line boundaries.
 

Uses of IDocumentRegion in edu.rice.cs.drjava.model.debug
 

Subinterfaces of IDocumentRegion in edu.rice.cs.drjava.model.debug
 interface Breakpoint
           
 

Uses of IDocumentRegion in edu.rice.cs.drjava.model.debug.jpda
 

Classes in edu.rice.cs.drjava.model.debug.jpda that implement IDocumentRegion
 class JPDABreakpoint
          The breakpoint object which has references to its OpenDefinitionsDocument and its BreakpointRequest.
 

Uses of IDocumentRegion in edu.rice.cs.drjava.ui
 

Classes in edu.rice.cs.drjava.ui with type parameters of type IDocumentRegion
 class RegionsListPanel<R extends IDocumentRegion>
          Panel for displaying regions in a list in the order specified by indices passes to addRegion.
protected static class RegionsListPanel.RegionListUserObj<R extends IDocumentRegion>
          Class that gets put into the list.
 

Fields in edu.rice.cs.drjava.ui declared as IDocumentRegion
protected  R RegionsListPanel.RegionListUserObj._region
           
 

Methods in edu.rice.cs.drjava.ui with parameters of type IDocumentRegion
 void MainFrame.goToRegionAndHighlight(IDocumentRegion r)