<metaname="copyright"content="Copyright (c) IBM Corporation and others 2002, 2006. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page.">
<TD>This is the base action class for the other classes, and is only used directly for actions that do not
result in a dialog or wizard being presented to the user. It extends the JFace <samp>Action</samp> class,
adding to it support for properties such as the current shell and viewer and selection, as well as
overridable methods for easily enabling/disabling the action based on the selection, and a method for
setting the context help for the action. There are many other useful methods, such
as <samp><Ahref="../../../org/eclipse/rse/ui/actions/SystemBaseAction.html#allowOnMultipleSelection(boolean)">allowOnMultipleSelection(boolean)</A></samp>
and <samp><Ahref="../../../org/eclipse/rse/ui/actions/SystemBaseAction.html#setContextMenuGroup(java.lang.String)">setContextMenuGroup(String)</A></samp>, to
simplify when the action is enabled and where it appears in a popup menu.
<TD>This base action class extends <samp><Ahref="../../../org/eclipse/rse/ui/actions/SystemBaseAction.html">SystemBaseAction</A></samp>, and is used as the parent class when
for popup menu actions that are to cascade. A cascading menu is itself another menu, really, containing actions just like the primary
menu does. So, to create a cascading menu action, you simply subclass this class and override the method
<samp><Ahref="../../../org/eclipse/rse/ui/actions/SystemBaseSubMenuAction.html#populateSubMenu(org.eclipse.jface.action.IMenuManager)">populateSubMenu</A></samp>, where
you add all the actions to show in this cascading menu. And yes, one or more of those can themselves be cascading. The RSE views will
automatically call the method <samp><Ahref="../../../org/eclipse/rse/ui/actions/SystemBaseSubMenuAction.html#getSubMenu()">getSubMenu</A></samp> when populating the initial popup menu, but your own views will need to do this.</TD>
<TD>This base action class extends <samp><Ahref="../../../org/eclipse/rse/ui/actions/SystemBaseAction.html">SystemBaseAction</A></samp>, and is used when the action presents the
user with a dialog, preferably a dialog that extends the RSE
<samp><Ahref="../../../org/eclipse/rse/ui/dialogs/SystemPromptDialog.html">SystemPromptDialog</A></samp> class. To use this class, subclass it and override the methods </TD>
<TD>This base action class extends <samp><Ahref="../../../org/eclipse/rse/ui/actions/SystemBaseAction.html">SystemBaseAction</A></samp>, and is used when the action presents the
user with a wizard, preferably a wizard that extends the RSE <samp><Ahref="../../../org/eclipse/rse/ui/wizards/AbstractSystemWizard.html">AbstractSystemWizard</A></samp> class.</TD>
</TR>
</TBODY>
</TABLE>
<h2>Actions Pre-Supplied by RSE</h2>
<p>You may find some of the actions supplied by the RSE to be immediately re-usable in your own code, saving some