SalesPoint Framework v3.0

Uses of Interface
sale.Action

Packages that use Action
sale This package contains the central classes of the Framework. 
sale.multiwindow Contains classes for the standard SalesPoint application GUI. 
users Contains all the classes for managing users and their capabilities. 
 

Uses of Action in sale
 

Classes in sale that implement Action
 class ActionActionListener
          A special ActionListener that allows to associate Actions with buttons that are not in a FormSheet's button bar or a MenuSheet.
 

Fields in sale declared as Action
protected  Action MenuSheetItem.m_aAction
          The action associated with this MenuSheetItem.
protected  Action ActionActionListener.m_aAction
          The action to be performed, when the listener is triggered.
 

Methods in sale that return Action
 Action FormSheet.FormButton.setAction(Action aAction)
          Set the action that is performed when this button is clicked.
 Action MenuSheetItem.setAction(Action aAction)
          Set the action to perform when this item is selected.
 

Methods in sale with parameters of type Action
 void FormSheet.addButton(String sCaption, int nID, Action aAction)
          Add a button to the FormSheet's button bar.
 Action FormSheet.FormButton.setAction(Action aAction)
          Set the action that is performed when this button is clicked.
 Action MenuSheetItem.setAction(Action aAction)
          Set the action to perform when this item is selected.
 

Constructors in sale with parameters of type Action
FormSheet.FormButton.FormSheet.FormButton(String sCaption, int nID, Action aAction)
          Create a new, initially enabled FormButton.
MenuSheetItem.MenuSheetItem(String sCaption, String sTag, Action aAction, char cMnemonic)
          Create a new MenuSheetItem with caption, tag, an action, and a mnemonic.
MenuSheetItem.MenuSheetItem(String sCaption, String sTag, Action aAction)
          Create a new MenuSheetItem with caption, tag and action; initially enabled.
MenuSheetItem.MenuSheetItem(String sCaption, Action aAction)
          Create a new MenuSheetItem with caption and action.
ActionActionListener.ActionActionListener(FormSheet fsOwner, Action aAction)
          Create a new ActionActionListener.
 

Uses of Action in sale.multiwindow
 

Classes in sale.multiwindow that implement Action
static class MultiWindow.MultiWindowAction
          Special Actions are necessary for MultiWindow-MenuSheets in order for the serialization to work properly.
 

Uses of Action in users
 

Classes in users that implement Action
 class ActionCapability
          A special capability guarding an action object.
 

Constructors in users with parameters of type Action
ActionCapability.ActionCapability(String sName, Action aToDo)
          Create a granted capability.
ActionCapability.ActionCapability(String sName, String sOnDeny, Action aToDo, boolean fGranted)
          Create a new ActionCapability.
 


SalesPoint Framework v3.0