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.preference   
org.springframework.richclient.samples.showcase.command   
org.springframework.richclient.samples.showcase.exceptionhandling   
org.springframework.richclient.samples.showcase.util   
org.springframework.richclient.security Integrates Acegi Security System for Spring into RCP. 
org.springframework.richclient.table   
org.springframework.richclient.util Misc common utility classes (mostly static-utility) that aim to reduce repeat coding. 
 

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
           
 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 CommandRegistryEvent.getCommand()
          Returns the command that the event relates to.
 AbstractCommand SimpleGroupMember.getCommand()
          Returns the underlying command, never null.
 AbstractCommand GroupMember.getCommand()
          Subclasses may override to return the command that they wrap.
 

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  Object CommandGroupJComponentBuilder.buildChildModel(Object parentModel, AbstractCommand command, int level)
          Implementation wrapping around the #buildChildComponent(JComponent, AbstractCommand, int)dModel(AbstractCommand)
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 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 GroupMemberList.contains(AbstractCommand command)
           
 boolean CommandGroup.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)
           
 

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 ToolBarCommandButtonConfigurer.configure(AbstractButton button, AbstractCommand command, CommandFaceDescriptor faceDescriptor)
           
 void MenuItemButtonConfigurer.configure(AbstractButton button, AbstractCommand command, CommandFaceDescriptor faceDescriptor)
           
 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 PullDownMenuButtonConfigurer.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 ApplicationWindowAwareCommand
          A skeleton implementation of an action command that needs to be aware of the ApplicationWindow in which it resides.
 class DialogCommand
          Open a dialog.
 class ExitCommand
          An action command that causes the application to exit.
 class HelpContentsCommand
           
 class NewWindowCommand
           
 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.
 

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 DefaultCommandManager.registerCommand(AbstractCommand command)
           
 void DefaultCommandRegistry.registerCommand(AbstractCommand command)
          Registers the given command with the registry.
 

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.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[] AbstractReporterForm.getReporterCommands()
           
 AbstractCommand[] Reporter.getReporterCommands()
           
 

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.util
 

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



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