Uses of Class
org.bs.mdi.swing.SwingCommand

Packages that use SwingCommand
org.bs.mdi.swing   
 

Uses of SwingCommand in org.bs.mdi.swing
 

Subclasses of SwingCommand in org.bs.mdi.swing
 class SwingCommandAdapter
          Adapter for SwingCommand to simplify subclassing
 class SwingWindowCommand
          Command subclass which activates a particular TraditionalDocumentWindow
 

Methods in org.bs.mdi.swing that return SwingCommand
 SwingCommand[] TraditionalMDIWindowManager.getSpecialCommands()
           
 SwingCommand[] TabMDIWindowManager.getSpecialCommands()
           
 SwingCommand[] MDIWindowManager.getSpecialCommands()
          Gets a list of special commands provided by this window manager.
 SwingCommand SwingDefaultCommands.getShowFileMenuCommand()
           
 SwingCommand SwingDefaultCommands.getShowEditMenuCommand()
           
 SwingCommand SwingDefaultCommands.getShowWindowMenuCommand()
           
 SwingCommand SwingDefaultCommands.getFileNewCommand()
           
 SwingCommand SwingDefaultCommands.getFileOpenCommand()
           
 SwingCommand SwingDefaultCommands.getShowFileRecentMenuCommand()
           
 SwingCommand SwingDefaultCommands.getFileSaveCommand()
           
 SwingCommand SwingDefaultCommands.getFileSaveAsCommand()
           
 SwingCommand SwingDefaultCommands.getShowFileExportMenuCommand()
           
 SwingCommand SwingDefaultCommands.getFilePrintSetupCommand()
           
 SwingCommand SwingDefaultCommands.getFilePrintPreviewCommand()
           
 SwingCommand SwingDefaultCommands.getFilePrintCommand()
           
 SwingCommand SwingDefaultCommands.getFileCloseCommand()
           
 SwingCommand SwingDefaultCommands.getFileQuitCommand()
           
 SwingCommand SwingDefaultCommands.getEditUndoCommand()
           
 SwingCommand SwingDefaultCommands.getEditRedoCommand()
           
 SwingCommand SwingDefaultCommands.getEditCopyCommand()
           
 SwingCommand SwingDefaultCommands.getEditCutCommand()
           
 SwingCommand SwingDefaultCommands.getEditPasteCommand()
           
 SwingCommand SwingDefaultCommands.getEditDeleteCommand()
           
 

Methods in org.bs.mdi.swing with parameters of type SwingCommand
static JMenu SwingCommandMenu.createMenu(SwingCommand command)
          Creates a new menu and associates it with the given command.
static AbstractButton SwingCommandButton.createToolButton(SwingCommand command)
          Creates a new toolbar button and associates it with the given command.
static AbstractButton SwingCommandButton.createToolToggleButton(SwingCommand command)
          Creates a new toolbar togglebutton and associates it with the given command.
static AbstractButton SwingCommandButton.createButton(SwingCommand command)
          Creates a new standard button and associates it with the given command.
static AbstractButton SwingCommandButton.createMenuItem(SwingCommand command)
          Creates a new menu item and associates it with the given command.
static AbstractButton SwingCommandButton.createCheckBox(SwingCommand command)
          Creates a new checkbox and associates it with the given command.
static AbstractButton SwingCommandButton.createRadioButton(SwingCommand command)
          Creates a new radio button and associates it with the given command.
protected  void SwingMainWindow.addSpecialWindowCommands(SwingCommand[] commands)
           
 

Constructors in org.bs.mdi.swing with parameters of type SwingCommand
SwingCommandTrigger(SwingCommand command)
          Creates a new command trigger.
SwingCommandMenu(SwingCommand command)
          Creates a new SwingCommandMenu and associates it with the given command.
SwingCommandButton(SwingCommand command, AbstractButton button)
          Creates a new custom SwingCommandButton based on an AbstractButton.
SwingCommandButton(SwingCommand command, AbstractButton button, int type)
          This constructor is for framework internal use only.