Uses of Class
edu.rice.cs.drjava.model.MovingDocumentRegion

Packages that use MovingDocumentRegion
edu.rice.cs.drjava.model The model package is responsible for the majority of the logic and state in DrJava. 
edu.rice.cs.drjava.ui The ui package contains classes for the default user interface for DrJava. 
 

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

Fields in edu.rice.cs.drjava.model declared as MovingDocumentRegion
private  MovingDocumentRegion FindReplaceMachine._selectionRegion
           
 

Fields in edu.rice.cs.drjava.model with type parameters of type MovingDocumentRegion
protected  ConcreteRegionManager<MovingDocumentRegion> AbstractGlobalModel._bookmarkManager
          Manager for bookmark regions.
protected  LinkedList<RegionManager<MovingDocumentRegion>> AbstractGlobalModel._findResultsManagers
          Managers for find result regions.
 

Methods in edu.rice.cs.drjava.model that return types with arguments of type MovingDocumentRegion
 RegionManager<MovingDocumentRegion> AbstractGlobalModel.createFindResultsManager()
           
 RegionManager<MovingDocumentRegion> GlobalModel.createFindResultsManager()
           
 RegionManager<MovingDocumentRegion> DummyGlobalModel.createFindResultsManager()
           
 RegionManager<MovingDocumentRegion> AbstractGlobalModel.getBookmarkManager()
           
 RegionManager<MovingDocumentRegion> AbstractGlobalModel.ConcreteOpenDefDoc.getBookmarkManager()
           
 RegionManager<MovingDocumentRegion> DummyOpenDefDoc.getBookmarkManager()
           
 RegionManager<MovingDocumentRegion> GlobalModel.getBookmarkManager()
           
 RegionManager<MovingDocumentRegion> OpenDefinitionsDocument.getBookmarkManager()
           
 RegionManager<MovingDocumentRegion> DummyGlobalModel.getBookmarkManager()
           
 List<RegionManager<MovingDocumentRegion>> AbstractGlobalModel.getFindResultsManagers()
           
 

Methods in edu.rice.cs.drjava.model with parameters of type MovingDocumentRegion
 int FindReplaceMachine.processAll(Runnable1<FindResult> findAction, MovingDocumentRegion region)
          Processes all occurences of the find word with the replace word in the current document or in all documents depending the value of the machine register _searchAllDocuments.
 void FindReplaceMachine.setSelection(MovingDocumentRegion s)
          Set the selected text region.
 

Method parameters in edu.rice.cs.drjava.model with type arguments of type MovingDocumentRegion
 void AbstractGlobalModel.removeFindResultsManager(RegionManager<MovingDocumentRegion> rm)
          Remove a manager from the model.
 void GlobalModel.removeFindResultsManager(RegionManager<MovingDocumentRegion> rm)
          Dispose a manager for find result regions.
 void DummyGlobalModel.removeFindResultsManager(RegionManager<MovingDocumentRegion> rm)
           
 

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

Fields in edu.rice.cs.drjava.ui declared as MovingDocumentRegion
protected  MovingDocumentRegion FindResultsPanel._region
           
 

Fields in edu.rice.cs.drjava.ui with type parameters of type MovingDocumentRegion
private  LinkedList<Pair<FindResultsPanel,Map<MovingDocumentRegion,HighlightManager.HighlightInfo>>> MainFrame._findResults
           
 

Methods in edu.rice.cs.drjava.ui with parameters of type MovingDocumentRegion
 FindResultsPanel MainFrame.createFindResultsPanel(RegionManager<MovingDocumentRegion> rm, MovingDocumentRegion region, String title, String searchString, boolean searchAll, boolean searchSelectionOnly, boolean matchCase, boolean wholeWord, boolean noComments, boolean noTestCases, WeakReference<OpenDefinitionsDocument> doc, FindReplacePanel findReplace)
          Create a new find results tab.
 void FindReplacePanel.findAll(String searchStr, boolean searchAll, boolean searchSelectionOnly, boolean matchCase, boolean wholeWord, boolean noComments, boolean noTestCases, OpenDefinitionsDocument startDoc, RegionManager<MovingDocumentRegion> rm, MovingDocumentRegion region, FindResultsPanel panel)
          Performs "find all" with the specified options.
 

Method parameters in edu.rice.cs.drjava.ui with type arguments of type MovingDocumentRegion
 FindResultsPanel MainFrame.createFindResultsPanel(RegionManager<MovingDocumentRegion> rm, MovingDocumentRegion region, String title, String searchString, boolean searchAll, boolean searchSelectionOnly, boolean matchCase, boolean wholeWord, boolean noComments, boolean noTestCases, WeakReference<OpenDefinitionsDocument> doc, FindReplacePanel findReplace)
          Create a new find results tab.
 void FindReplacePanel.findAll(String searchStr, boolean searchAll, boolean searchSelectionOnly, boolean matchCase, boolean wholeWord, boolean noComments, boolean noTestCases, OpenDefinitionsDocument startDoc, RegionManager<MovingDocumentRegion> rm, MovingDocumentRegion region, FindResultsPanel panel)
          Performs "find all" with the specified options.
 

Constructors in edu.rice.cs.drjava.ui with parameters of type MovingDocumentRegion
FindResultsPanel(MainFrame frame, RegionManager<MovingDocumentRegion> regionManager, MovingDocumentRegion region, String title, String searchString, boolean searchAll, boolean searchSelectionOnly, boolean matchCase, boolean wholeWord, boolean noComments, boolean noTestCases, WeakReference<OpenDefinitionsDocument> doc, FindReplacePanel findReplace)
          Constructs a new find results panel.
 

Constructor parameters in edu.rice.cs.drjava.ui with type arguments of type MovingDocumentRegion
BookmarksPanel(MainFrame frame, RegionManager<MovingDocumentRegion> bookmarkManager)
          Constructs a new bookmarks panel.
FindResultsPanel(MainFrame frame, RegionManager<MovingDocumentRegion> regionManager, MovingDocumentRegion region, String title, String searchString, boolean searchAll, boolean searchSelectionOnly, boolean matchCase, boolean wholeWord, boolean noComments, boolean noTestCases, WeakReference<OpenDefinitionsDocument> doc, FindReplacePanel findReplace)
          Constructs a new find results panel.