Uses of Interface
com.ibm.carma.model.Action

Packages that use Action
com.ibm.carma.model   
com.ibm.carma.model.util   
com.ibm.carma.ui.action.custom   
com.ibm.carma.ui.job   
com.ibm.carma.ui.property   
 

Uses of Action in com.ibm.carma.model
 

Methods in com.ibm.carma.model that return Action
 Action ModelFactory.createAction()
          Returns a new object of class 'Action'.
 Action ModelFactory.createAction(java.lang.String actionId, java.lang.String name, boolean disabled, java.lang.String desciption, java.util.List<CustomParameter> customParams, java.util.List<ReturnValue> returnValues)
          Returns a new object of class 'Action'.
 Action CustomActionAccepter.findActionFor(java.lang.String actionId)
          Returns the action associated with the given action Id.
 

Uses of Action in com.ibm.carma.model.util
 

Methods in com.ibm.carma.model.util with parameters of type Action
 java.lang.Object ModelSwitch.caseAction(Action object)
          Returns the result of interpretting the object as an instance of 'Action'.
 int ActionsIdentifierComparator.compare(Action action1, Action action2)
           
 

Uses of Action in com.ibm.carma.ui.action.custom
 

Methods in com.ibm.carma.ui.action.custom with parameters of type Action
 java.lang.Object[] CustomActionParameterManager.getUserStoredParamValues(CustomActionAccepter accepter, Action action)
          This method can be used to directly access what the user stored values are.
 void CustomActionParameterManager.setUserStoredParamValues(RepositoryInstance repository, Action action, java.lang.Object[] values)
          This method can be used to directly set the user stored values for a specific action against a specific repository
 void CustomActionParameterManager.setUserStoredParamValues(RepositoryManager repositoryManager, Action action, java.lang.Object[] values)
          This method can be used to directly set the user stored values for a specific action against a specific repository
 

Constructors in com.ibm.carma.ui.action.custom with parameters of type Action
CarmaCustomAction(Action action)
           
CustomActionParameterDialog(org.eclipse.swt.widgets.Shell parentShell, org.eclipse.swt.graphics.Image dialogTitleImage, Action action, CARMAResource resource, CustomActionParameterManager manager)
          Deprecated. use the CustomActionParameterDialog.CustomActionParameterDialog(Shell, Image, Action, CustomActionAccepter, CustomActionParameterManager) constructor
CustomActionParameterDialog(org.eclipse.swt.widgets.Shell parentShell, org.eclipse.swt.graphics.Image dialogTitleImage, Action action, CustomActionAccepter resource, CustomActionParameterManager manager)
          Creates a new instance.
CustomActionParameterDialog(org.eclipse.swt.widgets.Shell parentShell, org.eclipse.swt.graphics.Image dialogTitleImage, Action action, RepositoryManager repositoryManager, CustomActionParameterManager manager)
          Deprecated. use the CustomActionParameterDialog.CustomActionParameterDialog(Shell, Image, Action, CustomActionAccepter, CustomActionParameterManager) constructor
 

Uses of Action in com.ibm.carma.ui.job
 

Methods in com.ibm.carma.ui.job that return Action
static Action AbstractCarmaJob.getActionFromReturns(CARMAReturn returnValues)
          Walks the return value structure and determines the action the returns come from
 

Uses of Action in com.ibm.carma.ui.property
 

Methods in com.ibm.carma.ui.property with parameters of type Action
 java.lang.Object[] CarmaPreferenceStore.getStoredCustomParameterValues(RepositoryInstance repository, Action action)
          Clients shouldn't call this method directly, they should call CustomActionParameterManager.getUserStoredParamValues()
 java.lang.Object[] CarmaPreferenceStore.getStoredCustomParameterValues(RepositoryManager repositoryManager, Action action)
          Clients shouldn't call this method directly, they should call CustomActionParameterManager.getUserStoredParamValues()
 void CarmaPreferenceStore.setStoredCustomParameter(RepositoryInstance repository, Action action, java.lang.Object[] values)
          Should not be called by clients.
 void CarmaPreferenceStore.setStoredCustomParameter(RepositoryManager repositoryManager, Action action, java.lang.Object[] values)
          Should not be called by clients.