oracle.jdevimpl.esdk
Class ESDKController
java.lang.Object
   oracle.jdevimpl.esdk.ESDKController
oracle.jdevimpl.esdk.ESDKController
- All Implemented Interfaces: 
- Controller
- public final class ESDKController 
- extends java.lang.Object- implements Controller
Controller for the extension SDK design time.
- Since:
- 11.0
 
 
 
| Method Summary | 
|  boolean | handleEvent(IdeAction action,
            Context context)This method is called when a user interaction with a
 Viewtriggers the execution of a command. | 
|  boolean | update(IdeAction action,
       Context context)This method updates the enabled status of the specified action within the
 specified context.
 | 
 
| Methods inherited from class java.lang.Object | 
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
 
CMDID_DEPLOY_ALL
public static final int CMDID_DEPLOY_ALL
CMDID_OPEN_SDK
public static final int CMDID_OPEN_SDK
ESDKController
public ESDKController()
handleEvent
public boolean handleEvent(IdeAction action,
                           Context context)
- Description copied from interface: Controller
- This method is called when a user interaction with a Viewtriggers the execution of a command.
 
- 
- Specified by:
- handleEventin interface- Controller
 
- 
- Parameters:
- action- action whose command is to be executed.
- Returns:
- true if the controller handles the specified command.
 
update
public boolean update(IdeAction action,
                      Context context)
- Description copied from interface: Controller
- This method updates the enabled status of the specified action within the
 specified context. It should generally be called on the controller
 associated with the active view to allow that controller to take the
 first crack at determining its enabled status. If that controller
 wants to update its enabled status, it does so and returns true to
 indicate that further controllers do not need to be consulted. If the
 controller does not deal with setting the enabled status of an action,
 it delegates the request to its supervising controller, all the way up
 to the Ide. The Ide has a special implementation of update(xx) that
 further delegates the request to root controllers, until one of them
 returns true indicating the request was handled by the controller.
 
- 
- Specified by:
- updatein interface- Controller
 
- 
- Parameters:
- action- action whose command is to be executed.
- context- the current context
- Returns:
- true if the controller handles the specified command.
 
Copyright © 1997, 2013, Oracle. All rights reserved.