Uses of Interface
gistoolkit.display.DrawModel

Packages that use DrawModel
gistoolkit.application.command   
gistoolkit.display   
gistoolkit.display.drawmodel   
 

Uses of DrawModel in gistoolkit.application.command
 

Methods in gistoolkit.application.command with parameters of type DrawModel
 void CenterOnPointCommand.executeDraw(DrawModel inDrawModel)
           
 void DeleteCommand.executeDraw(DrawModel inDrawModel)
          If there is a record selected, then delete it.
 void EditCommand.executeDraw(DrawModel inDrawModel)
          On the first call for the select model, it will change the model to the edit model.
 void EditCommand.removeDraw(DrawModel inDrawModel)
          Removes the additional buttons from visibility.
 void NewShapeCommand.executeDraw(DrawModel inDrawModel)
          Called when the draw model has completed it's action.
 void NewShapeCommand.removeDraw(DrawModel inDrawModel)
          Removes the additional buttons from visibility.
 void PanCommand.executeDraw(DrawModel inDrawModel)
          On the first call for the select model, it will change the model to the edit model.
 void SelectMultiCommand.executeDraw(DrawModel inDrawModel)
          Called when the draw model has completed it's action.
 void SelectMultiCommand.removeDraw(DrawModel inDrawModel)
          Removes the additional buttons from visibility.
 void SimpleCommand.executeDraw(DrawModel inDrawModel)
          This method is called by the draw model when it has completed it's task.
 void SimpleCommand.executeAlternate(DrawModel inDrawModel)
          Called when the alternate path in the draw model is executed.
 void SimpleCommand.removeDraw(DrawModel inDrawModel)
          called when the draw model has been removed
 void ZoomInCommand.executeDraw(DrawModel inDrawModel)
          On the first call for the select model, it will change the model to the edit model.
 void ZoomOutCommand.executeDraw(DrawModel inDrawModel)
          On the first call for the select model, it will change the model to the edit model.
 

Uses of DrawModel in gistoolkit.display
 

Methods in gistoolkit.display that return DrawModel
 DrawModel GISDisplay.getDrawModel()
          Returns a reference to the currently selected draw model
 

Methods in gistoolkit.display with parameters of type DrawModel
 void Command.executeDraw(DrawModel inDrawModel)
          called from the trigger of the draw model
 void Command.removeDraw(DrawModel inDrawModel)
          called when the draw model has been removed
 void GISDisplay.setDrawModel(DrawModel inDrawModel)
          Sets the draw model for this item.
 

Uses of DrawModel in gistoolkit.display.drawmodel
 

Classes in gistoolkit.display.drawmodel that implement DrawModel
 class BoxDrawModel
          A model used for highlighting features on the map as the pointer is moved over it.
 class ClickPointModel
          Draw model for capturing a click location on the map.
 class EditNodesDrawModel
          A model used for highlighting features on the map as the pointer is moved over it.
 class HighlightDrawModel
          A model used for highlighting features on the map as the pointer is moved over it.
 class NewShapeDrawModel
          Draw model to handle the creation of new shapes.
 class PanDrawModel
          A model to offset the map by a particular amount.
 class SelectBoxModel
          Handles the selection of multiple objects from the currently selected layer.
 class SelectDrawModel
          Super class for handling selections from the interface.
 class SelectPointerModel
          Handles the selection of a single object from the currently selected layer.
 class SelectPointModel
          Handles the selection of a single object from the currently selected layer.
 class SelectPointsModel
          Handles the selection of multiple objects from the currently selected layer.
 class SimpleDrawModel
          Simple draw model, good for subclassing.