Uses of Interface
jimm.datavision.gui.cmd.Command

Packages that use Command
jimm.datavision.gui Provides the classes and interfaces that make up the graphical user interface used to build and run DataVision reports. 
jimm.datavision.gui.cmd Provides the classes and interfaces that make up the undo/redo command structure. 
 

Uses of Command in jimm.datavision.gui
 

Fields in jimm.datavision.gui declared as Command
protected  Command CodeEditorWin.command
           
 

Methods in jimm.datavision.gui with parameters of type Command
 void Designer.addCommand(Command cmd)
          Adds to the command history a command that has already been performed.
 void Designer.performCommand(Command cmd)
          Performs a command.
 void SectionWidget.performCommand(Command cmd)
          Passes a command up to the design window for execution.
 

Uses of Command in jimm.datavision.gui.cmd
 

Classes in jimm.datavision.gui.cmd that implement Command
 class AbstractAggregateCommand
          A command for adding a aggregate to a field for a particular section.
 class BoundsCommand
          A command for changing a field's bounds.
 class CommandAdapter
          An abstract adapter class for performing a command.
 class CompoundCommand
          A compound command holds a list of commands and allows their use as one single command.
 class CutCommand
          Cuts (copies to the clipboard then deletes) a list of field widgets.
 class DbConnCommand
          A command for changing a database's connection information.
 class DeleteAggregateCommand
          A command for deleting a aggregate to a field from a particular section.
 class DeleteCommand
          Deletes a list of field widgets.
 class DeleteGroupCommand
           
 class DeleteSectionCommand
           
 class EditAggregateFuncCommand
          A command for changing an aggregate field's function.
 class FieldAlignCommand
          Aligns a single field with another.
 class FieldMoveCommand
          Moves a single field.
 class FieldResizeCommand
          Resizes a single field by comparing it with another field and copying one of its dimensions.
 class FieldShowHideCommand
          Shows or hides a field.
 class FieldStretchCommand
          After stretching a field using the mouse, this command lets us undo and redo the size change.
 class FormatCommand
          A command for changing a field's format and border.
 class FormulaEditCommand
          A command for changing a Formula's code text.
 class FPCutCommand
          Cuts (copies to the clipboard then deletes) something from a field picker tree.
 class FPDeleteCommand
          Deletes something from the field picker tree.
 class GroupEditCommand
          A command for changing a report's Groups.
 class InsertFieldCommand
          Abstract superclass for inserting new fields.
 class NameableRenameCommand
          A command for changing a Nameable object's name.
 class NewAggregateCommand
          A command for adding a aggregate to a field for a particular section.
 class NewDraggedFieldCommand
          Inserts a new text field.
 class NewGroupCommand
           
 class NewImageFieldCommand
          Inserts a new image field.
 class NewSectionCommand
           
 class NewSubreportCommand
           
 class NewTextFieldCommand
          Inserts a new text field.
 class PaperSizeCommand
          Change a report's paper size.
 class ParamEditCommand
          A command for changing a Parameter's values---not the runtime values, but the default values presented to the user as initial choices.
 class PasteCommand
           
 class ReportStartupScriptEditCommand
          A command for changing the Report's startup Formula's code text.
 class ScriptingCommand
          Performs changes to a report's scripting language information.
 class SectionPageBreakCommand
          Toggles the state of a section's page break flag.
 class SectionResizeCommand
          Mainly used by other commands to remember a section's old size and restore it on an undo.
 class SortEditCommand
          A command for changing the sort orders in a Query.
 class SummaryCommand
          A command for changing a field's summary.
 class SuppressionProcEditCommand
          Handles suppression proc edits.
 class TableJoinCommand
          A command for changing a field's table join.
 class TypingCommand
          Moves a single field.
 class UserColumnEditCommand
          A command for changing a UserColumn's code text.
 class WhereClauseEditCommand
          A command for changing a Query's where clause text.
 class WidgetRenameCommand
          A command for changing a field widget's field's name.
 

Methods in jimm.datavision.gui.cmd with parameters of type Command
 void CompoundCommand.add(Command c)
           
 void CommandHistory.add(Command command)
          Add a command to the history list without performing it.
 void CommandHistory.perform(Command command)
          Perform a command and add it to the history list.