WebObjects 5.1

Uses of Class
com.webobjects.eoapplication.EOAction

Packages that use EOAction
com.webobjects.eoapplication   
com.webobjects.eogeneration.client   
com.webobjects.eogeneration.client.assistant   
 

Uses of EOAction in com.webobjects.eoapplication
 

Methods in com.webobjects.eoapplication that return EOAction
 EOAction EOController.actionWithName(String actionName)
          If the receiver has an action for a method with name actionName, this method returns that action; otherwise, the method returns null.
static EOAction EOAction.actionForControllerHierarchy(String actionName, String descriptionPath, String shortDescription, Icon icon, Icon smallIcon, KeyStroke menuAccelerator, int categoryPriority, int actionPriority, boolean sendsActionToAllControllers)
          Returns a new action (an EOAction object) as specified by the arguments.
static EOAction EOAction.actionForFocusComponent(String actionName, String descriptionPath, String shortDescription, Icon icon, Icon smallIcon, KeyStroke menuAccelerator, int categoryPriority, int actionPriority, String enabledKeyOnFocusComponent)
          Returns a new action (an EOAction object) as specified by the arguments.
static EOAction EOAction.actionForObject(String actionName, String descriptionPath, String shortDescription, Icon icon, Icon smallIcon, KeyStroke menuAccelerator, int categoryPriority, int actionPriority, Object object)
          Returns a new action (an EOAction object) as specified by the arguments.
static EOAction EOAction.standardActionForFocusComponent(String actionName, KeyStroke menuAccelerator, int actionPriority, String enabledKeyOnFocusComponent)
          Returns a shared action as specified by the arguments.
static EOAction EOAction.standardActivatePreviousWindowActionForApplication()
          Returns a shared action (an EOAction object) for the activatePreviousWindow method, which is dispatched directly to the EOApplication object at the top of the controller hierarchy.
static EOAction EOAction.standardAddActionForControllerHierarchy()
          Returns a shared action (an EOAction object) for the add method which is dispatched in the controller hierarchy.
static EOAction EOAction.standardAppendActionForControllerHierarchy()
          Returns a shared action (an EOAction object) for the append method which is dispatched in the controller hierarchy.
static EOAction EOAction.standardCancelActionForControllerHierarchy()
          Returns a shared action (an EOAction object) for the cancel method which is dispatched in the controller hierarchy.
static EOAction EOAction.standardClearActionForControllerHierarchy()
          Returns a shared action (an EOAction object) for the clear method which is dispatched in the controller hierarchy.
static EOAction EOAction.standardCloseWindowActionForControllerHierarchy()
          Returns a shared action (an EOAction object) for the closeWindow method which is dispatched in the controller hierarchy.
static EOAction EOAction.standardDeleteActionForControllerHierarchy()
          Returns a shared action (an EOAction object) for the delete method which is dispatched in the controller hierarchy.
static EOAction EOAction.standardDeselectActionForControllerHierarchy()
          Returns a shared action (an EOAction object) for the deselect method which is dispatched in the controller hierarchy.
static EOAction EOAction.standardDocumentActionForApplication(String actionName, KeyStroke menuAccelerator, int actionPriority)
          Returns an action with the method name actionName, menu accelerator menuAccelerator, and action priority actionPriority.
static EOAction EOAction.standardDocumentActionForControllerHierarchy(String actionName, String baseTitle, KeyStroke menuAccelerator, int actionPriority)
          Returns an action as specified by the arguments.
static EOAction EOAction.standardDocumentActionForControllerHierarchy(String actionName, KeyStroke menuAccelerator, int actionPriority)
          Returns an action as specified by the arguments.
static EOAction EOAction.standardEditActionForControllerHierarchy(String actionName, KeyStroke menuAccelerator, int actionPriority)
          Returns an action as specified by the arguments.
static EOAction EOAction.standardFindActionForControllerHierarchy()
          Returns a shared action (an EOAction object) for the find method which is dispatched in the controller hierarchy.
static EOAction EOAction.standardInsertActionForControllerHierarchy()
          Returns a shared action (an EOAction object) for the insert method which is dispatched in the controller hierarchy.
static EOAction EOAction.standardInsertWithTaskActionForControllerHierarchy()
          Returns a shared action (an EOAction object) for the insertWithTask method which is dispatched in the controller hierarchy.
static EOAction EOAction.standardOkActionForControllerHierarchy()
          Returns a shared action (an EOAction object) for the ok method which is dispatched in the controller hierarchy.
static EOAction EOAction.standardOkAndSaveActionForControllerHierarchy()
          Returns a shared action (an EOAction object) for the ok method, displayed as a Save action, which is dispatched in the controller hierarchy.
static EOAction EOAction.standardOpenWithTaskActionForControllerHierarchy()
          Returns a shared action (an EOAction object) for the openWithTask method which is dispatched in the controller hierarchy.
static EOAction EOAction.standardQuitActionForApplication()
          Returns a shared action (an EOAction object) for the quit method, which is dispatched directly to the EOApplication object at the top of the controller hierarchy.
static EOAction EOAction.standardRedoActionForControllerHierarchy()
          Returns a shared action (an EOAction object) for the redo method which is dispatched in the controller hierarchy.
static EOAction EOAction.standardRefreshActionForApplication()
          Returns a shared action (an EOAction object) for the collectChangesFromServer method, displayed as a Refresh action, which is dispatched directly to the EOApplication object at the top of the controller hierarchy.
static EOAction EOAction.standardRemoveActionForControllerHierarchy()
          Returns a shared action (an EOAction object) for the remove method which is dispatched in the controller hierarchy.
static EOAction EOAction.standardRevertActionForControllerHierarchy()
          Returns a shared action (an EOAction object) for the revert method which is dispatched in the controller hierarchy.
static EOAction EOAction.standardSaveActionForControllerHierarchy()
          Returns a shared action (an EOAction object) for the save method which is dispatched in the controller hierarchy.
static EOAction EOAction.standardSaveAllActionForApplication()
          Returns a shared action (an EOAction object) for the saveAll method, which is dispatched directly to the EOApplication object at the top of the controller hierarchy.
static EOAction EOAction.standardSelectActionForControllerHierarchy()
          Returns a shared action (an EOAction object) for the select method which is dispatched in the controller hierarchy.
static EOAction EOAction.standardUndoActionForControllerHierarchy()
          Returns a shared action (an EOAction object) for the undo method which is dispatched in the controller hierarchy.
 

Uses of EOAction in com.webobjects.eogeneration.client
 

Subclasses of EOAction in com.webobjects.eogeneration.client
 class EOEnterAction
           
 

Methods in com.webobjects.eogeneration.client that return EOAction
static EOAction EOEnterAction.standardActionForHelpWindowActivation(KeyStroke menuAccelerator, boolean multipleWindowsAvailable, String taskName)
           
static EOAction EOEnterAction.standardActionForInsertWithEntityName(String entityName)
           
static EOAction EOEnterAction.standardActionForOpenWithEntityName(String entityName)
           
static EOAction EOEnterAction.standardActionForQueryWithEntityName(String entityName)
           
static EOAction EOEnterAction.standardActionForToolWindowActivation(KeyStroke menuAccelerator, boolean multipleWindowsAvailable, String taskName)
           
static EOAction EOEnterAction.standardActionForWindowActivation(String descriptionPath, String shortDescription, KeyStroke menuAccelerator, int categoryPriority, int actionPriority, String taskName)
           
 

Uses of EOAction in com.webobjects.eogeneration.client.assistant
 

Subclasses of EOAction in com.webobjects.eogeneration.client.assistant
 class EOAssistantAction
           
 


Last updated Thu Jan 10 18:10:21 PST 2002.

Copyright © 2002 Apple Computer, Inc.