Implemented by:
- EOController
- Package:
- com.apple.client.eoapplication
The EOAction.Enabling interface defines a method, canPerformActionNamed, which allows you to tell if an action (an EOAction object) is enabled for the receiver.
public boolean canPerformActionNamed(String actionName)
Returns true
if
the receiver can perform an action (an EOAction object) named actionName, false
otherwise.
An EOController's implementation of this method generally returns false
if
the receiver doesn't have an action named actionName or
if the actionName action is disabled.
See Also: isActionNamedEnabled ( EOController)
DRAFT