Uses of Class
org.springframework.richclient.command.AbstractCommand

Packages that use AbstractCommand
org.springframework.richclient.application.mdi.contextmenu   
org.springframework.richclient.command   
org.springframework.richclient.command.config   
org.springframework.richclient.command.support   
org.springframework.richclient.form.binding.support   
org.springframework.richclient.form.binding.swing   
org.springframework.richclient.preference   
org.springframework.richclient.samples.showcase.command   
org.springframework.richclient.samples.showcase.exceptionhandling   
org.springframework.richclient.samples.showcase.util   
org.springframework.richclient.samples.showcase.view   
org.springframework.richclient.security Integrates Spring Security System into RCP. 
org.springframework.richclient.table   
org.springframework.richclient.taskpane   
org.springframework.richclient.util Some helper classes. 
org.springframework.richclient.widget   
org.springframework.richclient.widget.editor   
org.springframework.richclient.widget.table   
org.springframework.richclient.widget.table.glazedlists   
 

Uses of AbstractCommand in org.springframework.richclient.application.mdi.contextmenu
 

Subclasses of AbstractCommand in org.springframework.richclient.application.mdi.contextmenu
 class CascadeCommand
          Cascades all JInternalFrames in a given JDesktopPane.
 class MinimizeAllCommand
          Minimizes all JInternalFrames in a given JDesktopPane.
 class ShowFrameCommand
          Command to show a JInternalFrame, i.e.
 class TileCommand
          Tiles all JInternalFrames in a given JDesktopPane.
 

Uses of AbstractCommand in org.springframework.richclient.command
 

Subclasses of AbstractCommand in org.springframework.richclient.command
 class ActionCommand
           
 class CommandGroup
          Implementation of an AbstractCommand that groups a collection of commands.
 class ExclusiveCommandGroup
          A CommandGroup that can only contain ToggleCommands and for which only one togglecommand can be chosen.
 class SplitPaneExpansionToggleCommand
           
 class TargetableActionCommand
          An ActionCommand that delegates to an internal ActionCommandExecutor.
 class ToggleCommand
           
 

Methods in org.springframework.richclient.command that return AbstractCommand
 AbstractCommand CommandGroup.find(String memberPath)
          Search for and return the command contained by this group with the specified path.
 AbstractCommand SimpleGroupMember.getCommand()
          Returns the underlying command, never null.
 AbstractCommand GroupMember.getCommand()
          Subclasses may override to return the command that they wrap.
 AbstractCommand CommandRegistryEvent.getCommand()
          Returns the command that the event relates to.
 

Methods in org.springframework.richclient.command with parameters of type AbstractCommand
 void CommandGroup.add(AbstractCommand command)
           
 void CommandGroup.add(AbstractCommand command, boolean rebuild)
           
 void CommandGroup.add(String groupMemberPath, AbstractCommand command)
           
 void CommandGroup.add(String groupMemberPath, AbstractCommand command, boolean rebuild)
           
protected  void CommandGroup.addInternal(AbstractCommand command)
           
protected abstract  JComponent CommandGroupJComponentBuilder.buildChildComponent(JComponent parentComponent, AbstractCommand command, int level)
          JComponent-building variant of the CommandGroupModelBuilder.buildChildModel(Object, AbstractCommand, int)
protected abstract  Object CommandGroupModelBuilder.buildChildModel(Object parentModel, AbstractCommand command, int level)
          Allows the implementation subclass to build a mapping object-model corresponding to a visited leaf node in the command-group structure.
protected  Object CommandGroupJComponentBuilder.buildChildModel(Object parentModel, AbstractCommand command, int level)
          Implementation wrapping around the #buildChildComponent(JComponent, AbstractCommand, int)dModel(AbstractCommand)
protected abstract  JComponent CommandGroupJComponentBuilder.buildRootComponent(AbstractCommand command)
          JComponent-building variant of the CommandGroupModelBuilder.buildRootModel(CommandGroup)
protected  void CommandGroupFactoryBean.configureIfNecessary(AbstractCommand command)
          Configures the given command if it has not already been configured and this instance has been provided with a CommandConfigurer.
 boolean CommandGroup.contains(AbstractCommand command)
           
 boolean GroupMemberList.contains(AbstractCommand command)
           
static CommandGroup CommandGroup.createCommandGroup(AbstractCommand member)
          Creates a command group with a single command member.
protected  AbstractButton SimpleGroupMember.findButton(AbstractCommand attachedCommand, List buttons)
          Searches the given list of AbstractButtons for one that is not an instance of a JMenuItem and has the given command attached to it.
protected  JMenuItem SimpleGroupMember.findMenu(AbstractCommand attachedCommand, List abstractButtons)
          Searches the given list of AbstractButtons for one that is an instance of a JMenuItem and has the given command attached to it.
 boolean ExclusiveCommandGroup.isAllowedMember(AbstractCommand prospectiveMember)
           
 boolean CommandGroup.isAllowedMember(AbstractCommand proposedMember)
           
 void CommandRegistry.registerCommand(AbstractCommand command)
          Registers the given command with the registry.
 void CommandGroup.remove(AbstractCommand command)
           
 void CommandGroup.remove(AbstractCommand command, boolean rebuild)
           
 void CommandGroup.remove(String groupMemberPath, AbstractCommand command)
           
 void CommandGroup.remove(String groupMemberPath, AbstractCommand command, boolean rebuild)
           
 

Method parameters in org.springframework.richclient.command with type arguments of type AbstractCommand
static CommandGroup CommandGroup.createCommandGroup(List<? extends AbstractCommand> members)
          Create a command group which holds all the given members.
static CommandGroup CommandGroup.createCommandGroup(String groupId, List<? extends AbstractCommand> members)
          Create a command group which holds all the given members.
 

Constructors in org.springframework.richclient.command with parameters of type AbstractCommand
CommandRegistryEvent(CommandRegistry source, AbstractCommand command)
          Creates a new CommandRegistryEvent for the given registry and command.
SimpleGroupMember(CommandGroup parentGroup, AbstractCommand command)
          Creates a new SimpleGroupMember belonging to the given command group and wrapping the given command.
 

Uses of AbstractCommand in org.springframework.richclient.command.config
 

Methods in org.springframework.richclient.command.config that return AbstractCommand
 AbstractCommand DefaultCommandConfigurer.configure(AbstractCommand command)
           
 AbstractCommand CommandConfigurer.configure(AbstractCommand command)
          Configures the given command.
 AbstractCommand DefaultCommandConfigurer.configure(AbstractCommand command, ApplicationObjectConfigurer configurer)
           
 

Methods in org.springframework.richclient.command.config with parameters of type AbstractCommand
 void CommandFaceDescriptor.configure(AbstractButton button, AbstractCommand command, CommandButtonConfigurer configurer)
          Configures the given button and command using the given configurer and the information contained in this instance.
 void DefaultCommandButtonConfigurer.configure(AbstractButton button, AbstractCommand command, CommandFaceDescriptor faceDescriptor)
          Configures the given button and optional command object with the properties of the given descriptor.
 void CommandButtonConfigurer.configure(AbstractButton button, AbstractCommand command, CommandFaceDescriptor faceDescriptor)
          Configures the given button and optional command object with the properties of the given descriptor.
 void MenuItemButtonConfigurer.configure(AbstractButton button, AbstractCommand command, CommandFaceDescriptor faceDescriptor)
           
 void PullDownMenuButtonConfigurer.configure(AbstractButton button, AbstractCommand command, CommandFaceDescriptor faceDescriptor)
           
 void ToolBarCommandButtonConfigurer.configure(AbstractButton button, AbstractCommand command, CommandFaceDescriptor faceDescriptor)
           
 AbstractCommand DefaultCommandConfigurer.configure(AbstractCommand command)
           
 AbstractCommand CommandConfigurer.configure(AbstractCommand command)
          Configures the given command.
 AbstractCommand DefaultCommandConfigurer.configure(AbstractCommand command, ApplicationObjectConfigurer configurer)
           
 CommandFaceDescriptor CommandFaceDescriptorRegistry.getFaceDescriptor(AbstractCommand command, String faceDescriptorId)
           
 

Uses of AbstractCommand in org.springframework.richclient.command.support
 

Subclasses of AbstractCommand in org.springframework.richclient.command.support
 class AboutCommand
           
 class AbstractWidgetCommand
          Base class for commands that use widgets.
 class ApplicationWindowAwareCommand
          A skeleton implementation of an action command that needs to be aware of the ApplicationWindow in which it resides.
 class DataEditorWidgetViewCommand
          Widget command om een DefaultDataEditorWidget te tonen (of een widget die daarvan extend)
 class DialogCommand
          Open a dialog.
 class ExitCommand
          An action command that causes the application to exit.
 class HelpContentsCommand
           
 class NewWindowCommand
           
 class ShowDialogCommand
          Command that shows an application dialog
 class ShowPageCommand
          An action command for displaying a Page based on a provided PageDescriptor.
 class ShowPageMenu
          A menu containing a collection of sub-menu items that each display a given page.
 class ShowViewCommand
          An action command for displaying a View based on a provided ViewDescriptor.
 class ShowViewMenu
          A menu containing a collection of sub-menu items that each display a given view.
 class WidgetDialogCommand
          Widget Dialog Command shows a specific widget in a dialog.
 class WidgetViewCommand
          Widget command that shows a widget in a view
 

Methods in org.springframework.richclient.command.support that return AbstractCommand
 AbstractCommand DefaultCommandManager.configure(AbstractCommand command)
           
 

Methods in org.springframework.richclient.command.support with parameters of type AbstractCommand
 AbstractCommand DefaultCommandManager.configure(AbstractCommand command)
           
protected  void DefaultCommandRegistry.fireCommandRegistered(AbstractCommand command)
          Fires a 'commandRegistered' CommandRegistryEvent for the given command to all registered listeners.
 CommandFaceDescriptor DefaultCommandManager.getFaceDescriptor(AbstractCommand command, String faceDescriptorId)
           
 void DefaultCommandRegistry.registerCommand(AbstractCommand command)
          Registers the given command with the registry.
 void DefaultCommandManager.registerCommand(AbstractCommand command)
           
 

Constructors in org.springframework.richclient.command.support with parameters of type AbstractCommand
CommandFaceButtonManager(AbstractCommand command, CommandFaceDescriptor faceDescriptor)
           
CommandFaceButtonManager(AbstractCommand command, String faceDescriptorKey)
           
 

Uses of AbstractCommand in org.springframework.richclient.form.binding.support
 

Methods in org.springframework.richclient.form.binding.support that return AbstractCommand
protected abstract  AbstractCommand AbstractCRUDBinding.createAddCommand()
           
protected abstract  AbstractCommand AbstractCRUDBinding.createDetailCommand()
           
protected abstract  AbstractCommand AbstractCRUDBinding.createEditCommand()
           
protected abstract  AbstractCommand AbstractCRUDBinding.createRemoveCommand()
           
protected  AbstractCommand AbstractCRUDBinding.getAddCommand()
           
protected  AbstractCommand AbstractCRUDBinding.getDetailCommand()
           
protected  AbstractCommand AbstractCRUDBinding.getEditCommand()
           
protected  AbstractCommand AbstractCRUDBinding.getRemoveCommand()
           
 

Methods in org.springframework.richclient.form.binding.support that return types with arguments of type AbstractCommand
protected  List<AbstractCommand> AbstractCRUDBinding.createCommands()
           
protected  List<AbstractCommand> AbstractCRUDBinding.getCommands()
           
 

Uses of AbstractCommand in org.springframework.richclient.form.binding.swing
 

Methods in org.springframework.richclient.form.binding.swing that return AbstractCommand
protected  AbstractCommand AbstractGlazedListsBinding.createAddCommand()
           
protected  AbstractCommand AbstractGlazedListsBinding.createDetailCommand()
           
protected  AbstractCommand AbstractGlazedListsBinding.createEditCommand()
           
protected  AbstractCommand AbstractGlazedListsBinding.createRemoveCommand()
           
 

Uses of AbstractCommand in org.springframework.richclient.preference
 

Subclasses of AbstractCommand in org.springframework.richclient.preference
 class PreferenceCommand
           
 

Uses of AbstractCommand in org.springframework.richclient.samples.showcase.command
 

Subclasses of AbstractCommand in org.springframework.richclient.samples.showcase.command
 class TitleBarTimeStampCommand
          Simple command testing the ApplicationWindowAwareCommand class.
 

Uses of AbstractCommand in org.springframework.richclient.samples.showcase.exceptionhandling
 

Subclasses of AbstractCommand in org.springframework.richclient.samples.showcase.exceptionhandling
 class HibernateExceptionHandlerCommand
          Throws an InvalidStateException with several InvalidValues to show the HibernateValidatorDialogExceptionHandler.
 class JXErrorDialogExceptionHandlerCommand
          Command throwing the specific JXErrorDialogException that should be caught by the JXErrorDialogExceptionHandler.
 class MessagesDialogExceptionHandlerCommand
          Command throwing the specific MessagesDialogException that should be caught by the MessagesDialogExceptionHandler.
 

Uses of AbstractCommand in org.springframework.richclient.samples.showcase.util
 

Subclasses of AbstractCommand in org.springframework.richclient.samples.showcase.util
static class AbstractReporterForm.StateSynchronizingToggleCommand
           
 

Methods in org.springframework.richclient.samples.showcase.util that return AbstractCommand
 AbstractCommand[] Reporter.getReporterCommands()
           
 AbstractCommand[] AbstractReporterForm.getReporterCommands()
           
 

Uses of AbstractCommand in org.springframework.richclient.samples.showcase.view
 

Subclasses of AbstractCommand in org.springframework.richclient.samples.showcase.view
 class ShowViewWithInputCommand
          Asks the user for input, then shows the ViewWithInput, passing the input from the user.
 

Uses of AbstractCommand in org.springframework.richclient.security
 

Subclasses of AbstractCommand in org.springframework.richclient.security
 class LoginCommand
          Provides a login interface to the user.
 class LogoutCommand
          Provides a command to log the current user out.
 

Uses of AbstractCommand in org.springframework.richclient.table
 

Subclasses of AbstractCommand in org.springframework.richclient.table
 class SortTableCommand
          Listens to a sort list for changes and when they happen, sorts a sortable table model in a separate worker thread.
 

Uses of AbstractCommand in org.springframework.richclient.taskpane
 

Methods in org.springframework.richclient.taskpane that return types with arguments of type AbstractCommand
 IconGenerator<AbstractCommand> TaskPaneNavigatorView.getIconGenerator()
           
 IconGenerator<AbstractCommand> JTaskPaneBuilder.getIconGenerator()
           
 IconGenerator<AbstractCommand> TaskPaneNavigatorApplicationWindowFactory.getTaskPaneIconGenerator()
           
 IconGenerator<AbstractCommand> TaskPaneNavigatorApplicationWindow.getTaskPaneIconGenerator()
           
 

Methods in org.springframework.richclient.taskpane with parameters of type AbstractCommand
protected  JComponent JTaskPaneBuilder.buildChildComponent(JComponent parentComponent, AbstractCommand command, int level)
           
protected  JComponent JTaskPaneBuilder.buildRootComponent(AbstractCommand command)
           
 void JTaskPaneCommandButtonConfigurer.configure(AbstractButton button, AbstractCommand command, CommandFaceDescriptor faceDescriptor)
           
 ImageIcon DefaultTaskPaneIconGenerator.generateIcon(AbstractCommand forObject)
           
 

Method parameters in org.springframework.richclient.taskpane with type arguments of type AbstractCommand
 void TaskPaneNavigatorView.setIconGenerator(IconGenerator<AbstractCommand> iconGenerator)
           
 void JTaskPaneBuilder.setIconGenerator(IconGenerator<AbstractCommand> iconGenerator)
           
 void TaskPaneNavigatorApplicationWindowFactory.setTaskPaneIconGenerator(IconGenerator<AbstractCommand> taskPaneIconGenerator)
           
 void TaskPaneNavigatorApplicationWindow.setTaskPaneIconGenerator(IconGenerator<AbstractCommand> taskPaneIconGenerator)
           
 

Uses of AbstractCommand in org.springframework.richclient.util
 

Subclasses of AbstractCommand in org.springframework.richclient.util
 class AdjustFontSizeCommand
           
 

Methods in org.springframework.richclient.util with parameters of type AbstractCommand
static void RcpSupport.configure(AbstractCommand command)
           
 

Method parameters in org.springframework.richclient.util with type arguments of type AbstractCommand
static JPanel RcpSupport.createIconButtonPanel(List<? extends AbstractCommand> commands)
           
 

Uses of AbstractCommand in org.springframework.richclient.widget
 

Methods in org.springframework.richclient.widget that return types with arguments of type AbstractCommand
 List<? extends AbstractCommand> Widget.getCommands()
          Returns a list of commands for this widget.
 List<? extends AbstractCommand> AbstractWidgetForm.getCommands()
           
 List<? extends AbstractCommand> TitledWidgetForm.getCommands()
           
 List<? extends AbstractCommand> AbstractTitledWidgetForm.getCommands()
           
 List<? extends AbstractCommand> AbstractWidget.getCommands()
          Returns a list of commands for this widget.
 

Constructors in org.springframework.richclient.widget with parameters of type AbstractCommand
ButtonSwitcherWidget(AbstractCommand command, String alternativeFaceId)
           
 

Uses of AbstractCommand in org.springframework.richclient.widget.editor
 

Methods in org.springframework.richclient.widget.editor that return AbstractCommand
protected  AbstractCommand[] AbstractDataEditorWidget.getControlCommands()
           
protected  AbstractCommand AbstractDataEditorWidget.getHelpCommand()
           
protected  AbstractCommand AbstractDataEditorWidget.getRevertCommand()
           
 AbstractCommand AbstractDataEditorWidget.getToggleDetailCommand()
           
 

Methods in org.springframework.richclient.widget.editor that return types with arguments of type AbstractCommand
 List<AbstractCommand> AbstractDataEditorWidget.getCommands()
          Returns a list of commands for this widget.
 

Uses of AbstractCommand in org.springframework.richclient.widget.table
 

Methods in org.springframework.richclient.widget.table that return AbstractCommand
 AbstractCommand[] TableWidget.getNavigationCommands()
          Spring-RCP commands to navigate through the table
 

Uses of AbstractCommand in org.springframework.richclient.widget.table.glazedlists
 

Methods in org.springframework.richclient.widget.table.glazedlists that return AbstractCommand
 AbstractCommand[] GlazedListTableWidget.getNavigationCommands()
           
 



Copyright © 2004-2009 The Spring Framework. All Rights Reserved.