Uses of Interface
dsto.dfc.swing.commands.Command

Packages that use Command
dsto.dfc.swing.commands Framework for defining and presenting user commands in a UI. 
dsto.dfc.swing.controls Miscellaneous UI components and support classes. 
dsto.dfc.swing.dnd Extensions to the AWT Drag and Drop/Copy and Paste packages. 
dsto.dfc.swing.forms A high-level framework supporting the assembly of UI editor components into forms. 
dsto.dfc.swing.list Extended support for the Swing JList and ListModel classes. 
dsto.dfc.swing.logging Components for displaying log messages. 
dsto.dfc.swing.panels Provides MDI-style window management support for managing a set of components. 
dsto.dfc.swing.persistence Support for managing persistent objects. 
dsto.dfc.swing.styles   
dsto.dfc.swing.table Extension of the Swing table framework to support advanced (add, remove, copy, paste etc) table models and provide several extensions to the JTable component. 
dsto.dfc.swing.tree Extends the Swing tree package to add support for advanced tree models (supporting add, remove, copy, paste etc) and provide several extensions to the JTree component. 
dsto.dfc.swing.undo Extends Swing undo/redo framework to add generalized support for monitoring user edits and displaying them in a UI. 
 

Uses of Command in dsto.dfc.swing.commands
 

Subinterfaces of Command in dsto.dfc.swing.commands
 interface CompositeCommand
          Use when you want a command that 'selects' from a defined set of commands.
 interface EnumeratedCommand
          Defines a command whose behaviour 'selects' from a defined set of enumerated values.
 

Classes in dsto.dfc.swing.commands that implement Command
 class AbstractBooleanCommand
          Base class for commands that can be 'on' or 'off'.
 class AbstractCommand
          Base class for commands.
 class AbstractCompositeCommand
          The AbstractCompositeCommand should be used when you want to have a list of commands that are in some way linked together.
 class AbstractEnumeratedCommand
          Abstract base class for commands that act to select one or more values from an enumerated set (eg zoom levels, open windows, etc).
 class AbstractMoveCommand
          Base class for commands that move items up/down within their host.
 class AbstractMutableCommand
          Base class for commands that have changeable properties.
 class AbstractSelectionBasedCommand
          Base class for commands that are affected by changes in a SelectionEventSource (eg become disabled when nothing is selected).
 class BasicAboutCommand
          Show an about box.
 class BasicAddEntryCommand
          Base class for commands that add a new entry to a control.
 class BasicCopyCommand
           
 class BasicCutCommand
           
 class BasicDeleteCommand
          Basic delete command.
 class BasicExitCommand
          Base class for Exit commands.
 class BasicFileOpenCommand
          Base class for File Open commands.
 class BasicFileSaveAsCommand
          Base class for File "Save As..." commands.
 class BasicFileSaveCommand
          Base class for File Save commands.
 class BasicPasteCommand
           
 class BasicPropertiesCommand
          Base class for Properties type commands.
 

Fields in dsto.dfc.swing.commands declared as Command
protected  Command CommandActionListenerAdapter.command
           
protected  Command CommandActionAdapter.command
           
 

Methods in dsto.dfc.swing.commands that return Command
 Command CommandView.findCommand(String commandName)
          Find the first instance of a command with a matching name in a breadth-first search of subviews.
 Command CommandViewNode.getCommand()
          The currently active command (may be null if no command is associated with this node).
 Command CommandView.getCommand(Class commandClass)
           
 Command CommandView.getCommand(int index)
          Get the command at a given ordinal.
 Command CommandView.getCommand(String commandName)
           
static Command CommandMenus.getCommandForMenuItem(JComponent menuComponent)
           
 Command[] CompositeCommand.getCommands()
          Returns the complete list of defined 'selectable' commands.
abstract  Command[] AbstractCompositeCommand.getCommands()
           
 Command CommandView.getDefaultCommand()
           
protected  Command CommandMenuButton.getFirstCommand()
          Go through the popup menu looking for the first command.
 Command CommandViewNodeEvent.getNewCommand()
           
 Command CommandViewNodeEvent.getOldCommand()
           
 Command[] CompositeCommand.getSelectedCommands()
          Gets the currently selected command/s.
abstract  Command[] AbstractCompositeCommand.getSelectedCommands()
           
 Command CommandView.removeCommand(String commandName)
           
 

Methods in dsto.dfc.swing.commands with parameters of type Command
 void CommandView.addCommand(Command command)
          Add a command to the end of the view.
 void CommandView.addCommand(Command command, int index)
          Add a command to the view at a specific index.
 boolean Command.canReplace(Command command)
          True if this command can logically replace another.
 boolean AbstractCompositeCommand.canReplace(Command command)
           
 boolean AbstractCommand.canReplace(Command command)
          Returns false;
 boolean CommandView.containsCommand(Command command)
           
protected  JMenuItem CompositeCmdMenuProvider.createMenuItem(ButtonGroup itemButtonGroup, Command childCmd)
          Create a menu item for the child command
static String CommandRegistry.getDisplayName(Command command)
          Return the name that should be displayed for a command, taking into account whether the command is interactive.
static String CommandRegistry.getGroupInView(String view, Command command)
           
 int CommandView.getIndex(Command command)
           
static String CommandRegistry.getShortName(Command command)
          Get the short version of a command name eg 'file.Open' becomes 'Open'.
 boolean CompositeCmdMenuProvider.isSelected(Command childCmd)
           
 boolean AbstractCompositeCommand.isSelected(Command cmdChild)
           
protected  CommandViewNode CommandView.makeVine(String group, Command command)
          Make a vine (tree where all nodes have at most one child) from a command.
 void CommandView.removeCommand(Command command)
           
 void CommandViewNode.setCommand(Command newCommand)
          Set the currently active command.
 void CommandView.setDefaultCommand(Command newValue)
          The default command for this view.
protected  void CommandMenuButton.setDefaultCommand(Command command)
          Given a command it will put it as the default by placing it in the execute button.
static void CommandToolBars.showName(CommandView view, Command command)
          Shortcut to set the CommandToolBars.SHOW_NAME_KEY command property to true.
protected  void CommandView.updateCommandGroup(Command command)
          Updates command tree when a command changes its group.
 

Constructors in dsto.dfc.swing.commands with parameters of type Command
CommandActionAdapter(Command command)
           
CommandActionListenerAdapter(Command command)
           
CommandButtonSynchronizer(Command command, AbstractButton button)
           
CommandButtonSynchronizer(Command command, AbstractButton button, boolean showText)
           
CommandViewNode(CommandViewNode parent, Command command)
          Create a node with a given name and an associated command.
CommandViewNodeEvent(CommandViewNode source, Command oldCommand, Command newCommand)
           
 

Uses of Command in dsto.dfc.swing.controls
 

Classes in dsto.dfc.swing.controls that implement Command
protected  class DfcDialog.CmdCancel
           
 

Methods in dsto.dfc.swing.controls that return Command
 Command DfcDialog.getCancelCommand()
           
 

Uses of Command in dsto.dfc.swing.dnd
 

Classes in dsto.dfc.swing.dnd that implement Command
 class AbstractCnpCommand
          Abstract base class for clipboard based commands operating on a CnpProvider.
 class CmdCopy
          Copy from a CnpProvider to the system clipboard.
 class CmdCut
          Cut from a CnpProvider to the system clipboard.
 class CmdPaste
          Paste from the system clipboard to a CnpProvider.
 

Uses of Command in dsto.dfc.swing.forms
 

Classes in dsto.dfc.swing.forms that implement Command
 class AbstractShowCustomizerCommand
          Base implementation of the properties command that attempts to show a JavaBean's FormEditor-compliant customizer.
 

Uses of Command in dsto.dfc.swing.list
 

Classes in dsto.dfc.swing.list that implement Command
 class AbstractAddRowCommand
          Base class for "Add New Row"-type commands.
 class CmdCustomize
          Base implementation of the properties command that attempts to show the selected list entry's FormEditor-compliant customizer.
 class CmdDeleteRow
          Deletes the currently selected row of a list using that is displaying a DfcListModel.
 

Uses of Command in dsto.dfc.swing.logging
 

Classes in dsto.dfc.swing.logging that implement Command
 class CmdShowLogWindow
          Shows the log window managed by a LogWindowPopper instance.
 

Uses of Command in dsto.dfc.swing.panels
 

Classes in dsto.dfc.swing.panels that implement Command
 class CmdClosePanel
          A Command that removes the currently active panel from the panel manager.
 class CmdFloatPanel
          A Command that sets the floating state of the currently active PanelManager.Panel to floatStatus.
 class CmdPageLayoutPanel
          A Command that opens up a page layout dialog.
 class CmdPrintPanel
          A Command that opens up a print dialog.
 class CmdPrintPreviewPanel
          A Command that opens up a print preview dialog.
 

Methods in dsto.dfc.swing.panels that return Command
 Command PanelManager.Panel.getDefaultCommand()
           
 Command InternalFloatState.getDefaultCommand()
           
 Command FixedFloatState.getDefaultCommand()
           
 

Methods in dsto.dfc.swing.panels with parameters of type Command
 void StandardCommandViews.addCommand(Command command)
           
 void FixedFloatState.replaceCloseCommand(Command unpublishedCloseCommand)
           
 void StandardCommandViews.setDefaultCommand(Command command)
          end CommandSource interface
 void PanelManager.Panel.switchCloseCommand(Command publishedCloseCommand)
           
 void FixedFloatState.switchCloseCommand(Command publishedCloseCommand)
           
 

Uses of Command in dsto.dfc.swing.persistence
 

Classes in dsto.dfc.swing.persistence that implement Command
 class BasicDocumentSaveAsCommand
          Basic command to execute the saveAs() method on a Document.
 class BasicDocumentSaveCommand
          Command to invoke the save () method on a Document.
 class BasicSerializeCommand
          Base implementation for commands that save objects using Serializer.
 

Uses of Command in dsto.dfc.swing.styles
 

Classes in dsto.dfc.swing.styles that implement Command
static class StyleSheetTableView.CmdClearValue
          The "Clear Value" command.
 

Uses of Command in dsto.dfc.swing.table
 

Classes in dsto.dfc.swing.table that implement Command
 class AbstractCustomizeRowCommand
          Abstract base class for commands that customize the selected row of a table.
 class CmdAddRow
          Add a new row to the end of the table.
 class CmdDeleteRows
          Delete selected rows.
 class CmdInsertRow
          Insert a new row into the table.
 class CmdMoveRow
          Moves rows up/down the table.
 class CmdSelectAll
          The "Select All" command.
protected  class MapTableView.CmdAddProperty
          The "Add Property" command.
protected  class MapTableView.CmdDeleteProperty
          The "Delete Property" command.
 

Fields in dsto.dfc.swing.table declared as Command
protected  Command MapTableView.addEntryCommand
           
protected  Command MapTableView.deleteEntryCommand
           
 

Uses of Command in dsto.dfc.swing.tree
 

Classes in dsto.dfc.swing.tree that implement Command
 class CmdAddEntry
          Add a new entry as a child of the currently selected entry.
 class CmdCollapse
          Collapse currently selected node.
 class CmdDelete
          Delete currently selected node and all children.
 class CmdExpandAll
          Expand currently selected node and all children.
 class CmdMoveEntry
          A command that moves tree entries up/down within their parent.
 class CmdRename
          Rename the selected node.
 

Uses of Command in dsto.dfc.swing.undo
 

Classes in dsto.dfc.swing.undo that implement Command
 class AbstractUndoableCommand
          Abstract super class for undo and redo commands.
 class CmdRedo
          Command to invoke a single redo () on the MonitoredUndoManager.
 class CmdRedoTo
          Command class to invoke redoTo () on a MonitoredUndoManager.
 class CmdUndo
          Command to invoke a single undo () on the MonitoredUndoManager.
 class CmdUndoTo
          Command to invoke undoTo () on a MonitoredUndoManager.
 

Methods in dsto.dfc.swing.undo that return Command
 Command MonitorPanel.getRedoCommand()
           
 Command MonitorPanel.getUndoCommand()
           
 

Methods in dsto.dfc.swing.undo with parameters of type Command
protected  void MonitorPanel.bindCommandToButton(Command command, AbstractButton button)
          Attaches a command to a button.
 



Copyright © 2008 Commonwealth of Australia