Uses of Interface
gistoolkit.display.Command

Packages that use Command
gistoolkit.application.command   
gistoolkit.display.drawmodel   
gistoolkit.display.widgets   
 

Uses of Command in gistoolkit.application.command
 

Classes in gistoolkit.application.command that implement Command
 class AboutCommand
          Exits the application.
 class CenterOnPointCommand
          Command to center the map where the user clicks.
 class CopyCommand
          Command to copy the selected items from their current data source and store them in the copy buffer for later insertion into another data source.
 class CutCommand
          Command to delete the selected items from their current data source and insert them into another data source.
 class DeleteCommand
          Command to delete items from the display, currently only works for polygons and multi polygons.
 class EditCommand
          Command to select objects on the display to edit, and then edit (move the nodes of the selected object) Creation date: (4/24/2001 2:17:21 PM)
 class ExitCommand
          Exits the application.
 class ImageChopperCommand
          Creates a RastoerCatalogCreatorApplication and displays it for the user.
 class LegendCommand
          Displays the legend.
 class NewLayerCommand
          Allows the user create a new layer and add it to the map.
 class NewShapeCommand
          Command to select objects on the display to edit, and then edit (move the nodes of the selected object) Creation date: (4/24/2001 2:17:21 PM)
 class OpenConfigurationCommand
          Reads the configuration information from disk, and sets up the user interface with the information found there.
 class OpenLayerCommand
          Allows the user to add an existing layer to the map.
 class PanCommand
          Command to pan the map to a new location.
 class PasteCommand
          Command to insert the records in the copy buffer into another data source.
 class PreviousZoomCommand
          Command to record the extents of the map, and recall those extents.
 class PrintCommand
          Command to print the contents of the map.
 class ProjectionCommand
          Command to display the Command dialog, and then set the command into the layers for reinterpretation.
 class RasterCatalogCreatorCommand
          Creates a RastoerCatalogCreatorApplication and displays it for the user.
 class ResetEnvelopeCommand
          Command to reset the Envelope of the map to a preset ammount.
 class SaveCommand
          Allows the user to save the displayed immage in several formats.
 class SaveConfigurationCommand
          Command to save the configuration information for this instance of the editor.
 class SaveImageCommand
          Allows the user to save the displayed immage in several formats.
 class SaveSelectionCommand
          Command to take the records that are current in the copy buffer, and save them to permanent storage.
 class SaveSVGCommand
          Allows the user to save the displayed immage in several formats.
 class ScaleBarCommand
          Edit the Scale Bar
 class SelectAllCommand
          Command to select all the visible records within the selected layer.
 class SelectCommand
          Command to enable the select draw model on the display Creation date: (4/24/2001 2:17:21 PM)
 class SelectMultiCommand
          Command to allow the selection of one or more objects on the display.
 class ShapeFileProjectorCommand
           
 class ShowAttributeCommand
          Command to select all the visible records within the selected layer.
 class SimpleCommand
          A simple command, meant to be subclassed.
 class ZoomInCommand
          Command to zoom the envelope of the map in to a new location.
 class ZoomOutCommand
          Command to zoom the extents of the map in to a new location.
 class ZoomToSelectedShapesCommand
          Command to select all the visible records within the selected layer.
 

Uses of Command in gistoolkit.display.drawmodel
 

Fields in gistoolkit.display.drawmodel declared as Command
protected  Command SimpleDrawModel.myCommand
          Handle to the Command to call
 

Methods in gistoolkit.display.drawmodel with parameters of type Command
 void SimpleDrawModel.setCommand(Command inCommand)
          Set the command to call at the completion of this draw.
 

Constructors in gistoolkit.display.drawmodel with parameters of type Command
BoxDrawModel(Command inCommand)
          HighlightDrawModel constructor comment.
ClickPointModel(Command inCommand)
           
EditNodesDrawModel(Command inCommand)
          Create a new EditNodesDrawModel, with a connection to the command.
HighlightDrawModel(Command inCommand)
          HighlightDrawModel constructor comment.
NewShapeDrawModel(Command inCommand)
          Creates new NewShapeDrawModel with the given command
PanDrawModel(Command inCommand)
          HighlightDrawModel constructor comment.
SelectBoxModel(Command inCommand)
          Creates new SelectDrawModel
SelectPointModel(Command inCommand)
          Creates new SelectDrawModel
SelectPointerModel(Command inCommand)
          Creates new SelectDrawModel
SelectPointsModel(Command inCommand)
          Creates new SelectDrawModel
 

Uses of Command in gistoolkit.display.widgets
 

Methods in gistoolkit.display.widgets that return Command
 Command GISButton.getCommand()
          gets the command to execute when the button is pressed.
 Command GISCommandButton.getCommand()
          gets the command to execute when the button is pressed.
 Command GISMenuButton.getCommand()
          gets the command to execute when the button is pressed.
 Command GISMenuItem.getCommand()
          Retrieve the command to be executed
 Command GISRadioButton.getCommand()
          gets the command to execute when the button is pressed.
 

Methods in gistoolkit.display.widgets with parameters of type Command
 void GISButton.setCommand(Command inCommand)
          Set the command to execute when the button is pressed.
 void GISCommandButton.setCommand(Command inCommand)
          Set the command to execute when the button is pressed.
 void GISMenuButton.setCommand(Command inCommand)
          Set the command to execute when the button is pressed.
 void GISMenuItem.setCommand(Command inCommand)
          Set the command to be executed
 void GISRadioButton.setCommand(Command inCommand)
          Set the command to execute when the button is pressed.
 

Constructors in gistoolkit.display.widgets with parameters of type Command
GISCommandButton(java.lang.String text, Command inCommand)
          GISButton constructor comment.
GISMenuButton(Command inCommand, javax.swing.AbstractButton inButton)
          Create a button with this text title and this command.
GISMenuItem(java.lang.String inName, Command inCommand)
          Creates new GISMenuItem
GISRadioButton(java.lang.String text, Command inCommand)
          GISButton constructor comment.