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

Packages that use ActionCommand
org.springframework.richclient.application Base application interfaces/classes. 
org.springframework.richclient.application.mdi.contextmenu   
org.springframework.richclient.application.support   
org.springframework.richclient.command   
org.springframework.richclient.command.support   
org.springframework.richclient.dialog   
org.springframework.richclient.dialog.support   
org.springframework.richclient.form   
org.springframework.richclient.list   
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 ActionCommand in org.springframework.richclient.application
 

Methods in org.springframework.richclient.application that return ActionCommand
 ActionCommand PageDescriptor.createShowPageCommand(ApplicationWindow window)
          Create a command that when executed, will attempt to show the page component described by this descriptor in the provided application window.
 ActionCommand ViewDescriptor.createShowViewCommand(ApplicationWindow window)
          Create a command that when executed, will attempt to show the page component described by this descriptor in the provided application window.
 

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

Subclasses of ActionCommand 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 ActionCommand in org.springframework.richclient.application.support
 

Methods in org.springframework.richclient.application.support that return ActionCommand
 ActionCommand AbstractPageDescriptor.createShowPageCommand(ApplicationWindow window)
           
 ActionCommand DefaultViewDescriptor.createShowViewCommand(ApplicationWindow window)
           
 ActionCommand LookupViewDescriptor.createShowViewCommand(ApplicationWindow window)
           
 

Uses of ActionCommand in org.springframework.richclient.command
 

Subclasses of ActionCommand in org.springframework.richclient.command
 class TargetableActionCommand
          An ActionCommand that delegates to an internal ActionCommandExecutor.
 class ToggleCommand
           
 

Methods in org.springframework.richclient.command that return ActionCommand
 ActionCommand CommandRegistry.getActionCommand(String commandId)
          Deprecated. use CommandRegistry.getCommand(String, Class) instead. You may choose to either catch the CommandNotOfRequiredTypeException or call CommandRegistry.isTypeMatch(String, Class) first.
 

Methods in org.springframework.richclient.command with parameters of type ActionCommand
 void ActionCommandInterceptor.postExecution(ActionCommand command)
          Will be called after successfull execution of an action command.
 boolean ActionCommandInterceptor.preExecution(ActionCommand command)
          Will be called before the action command is executed.
 

Constructors in org.springframework.richclient.command with parameters of type ActionCommand
SwingActionAdapter(ActionCommand command)
          Creates a new SwingActionAdapter with the given underlying action command.
 

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

Subclasses of ActionCommand 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 ShowViewCommand
          An action command for displaying a View based on a provided ViewDescriptor.
 

Methods in org.springframework.richclient.command.support that return ActionCommand
 ActionCommand DefaultCommandManager.getActionCommand(String commandId)
           
 ActionCommand DefaultCommandRegistry.getActionCommand(String commandId)
          Deprecated.  
 

Methods in org.springframework.richclient.command.support with parameters of type ActionCommand
 void ActionCommandInterceptorAdapter.postExecution(ActionCommand command)
           
 boolean ActionCommandInterceptorAdapter.preExecution(ActionCommand command)
           
 

Uses of ActionCommand in org.springframework.richclient.dialog
 

Methods in org.springframework.richclient.dialog that return ActionCommand
protected  ActionCommand ApplicationDialog.getCallingCommand()
          Returns the command that opened this dialog.
protected  ActionCommand ApplicationDialog.getCancelCommand()
          Returns the cancel command.
protected  ActionCommand ApplicationDialog.getFinishCommand()
          Returns the finish command.
 

Methods in org.springframework.richclient.dialog with parameters of type ActionCommand
protected  void ApplicationDialog.registerDefaultCommand(ActionCommand command)
          Register the provided button as the default dialog button.
 void ApplicationDialog.setCallingCommand(ActionCommand callingCommand)
          Set the command that opened this dialog.
 

Uses of ActionCommand in org.springframework.richclient.dialog.support
 

Methods in org.springframework.richclient.dialog.support with parameters of type ActionCommand
static JComponent DialogPageUtils.createStandardView(DialogPage dialogPage, ActionCommand okCommand, ActionCommand cancelCommand)
          Construct a complete standard layout for a dialog page.
 

Uses of ActionCommand in org.springframework.richclient.form
 

Methods in org.springframework.richclient.form that return ActionCommand
protected  ActionCommand AbstractDetailForm.createCancelCommand()
          Create the cancel command.
protected  ActionCommand AbstractMasterForm.createDeleteCommand()
          Create the "delete object" command.
protected  ActionCommand AbstractMasterForm.createNewFormObjectCommand()
          Create the "new detail object" command.
 ActionCommand AbstractDetailForm.getCancelCommand()
          Return the configured cancel command, creating it if necessary.
 ActionCommand AbstractForm.getCommitCommand()
           
 ActionCommand AbstractMasterForm.getDeleteCommand()
          Return the command to delete the currently selected item in the master set.
 ActionCommand AbstractMasterForm.getNewFormObjectCommand()
          Get the action command to creating a new detail object.
 ActionCommand AbstractForm.getNewFormObjectCommand()
           
 ActionCommand AbstractForm.getRevertCommand()
           
 

Uses of ActionCommand in org.springframework.richclient.list
 

Methods in org.springframework.richclient.list that return ActionCommand
static ActionCommand ListUtils.createRemoveRowCommand(List list, ValueModel selectionIndexHolder)
           
 

Uses of ActionCommand in org.springframework.richclient.preference
 

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

Methods in org.springframework.richclient.preference that return ActionCommand
protected  ActionCommand PreferencePage.getApplyCommand()
          Will create "Apply" command if it doesn't exist yet
protected  ActionCommand[] PreferencePage.getCommands()
           
protected  ActionCommand PreferencePage.getRestoreDefaultsCommand()
          Will create "Restore Defaults" command if it doesn't exist yet
 

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

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

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

Subclasses of ActionCommand 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 ActionCommand in org.springframework.richclient.samples.showcase.util
 

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

Methods in org.springframework.richclient.samples.showcase.util that return ActionCommand
 ActionCommand AbstractReporterTitledApplicationDialog.getClearTextAreaCommand()
           
 ActionCommand AbstractReporterForm.getPrintFieldsCommand()
           
 ActionCommand AbstractReporterForm.getPrintFormModelCommand()
           
 ActionCommand AbstractReporterForm.getPrintFormObjectCommand()
           
 

Uses of ActionCommand in org.springframework.richclient.security
 

Subclasses of ActionCommand 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 ActionCommand in org.springframework.richclient.table
 

Subclasses of ActionCommand 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 ActionCommand in org.springframework.richclient.util
 

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



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