Extension SDK 10.1.2

oracle.javatools.editor
Interface ActionPostInvoker


public interface ActionPostInvoker

The ActionPostInvoker is used to listen for completed editor actions immediately after they complete - this gives plugins a chance to do some subsequent, such as formatting after inserting a new line. This ensures that these operations can be performed before another key event is processed.

Note that this notification will be provided ONLY for completed actions. Also note that key typed actions are not currently routed through this mechanism.

See Also:
BasicEditorPane, ActionHookInvoker

Method Summary
 void invokedAction(java.lang.String actionKey)
          Notifies the listener that the given action, denoted by the key, was just invoked and completed successfully.
 

Method Detail

invokedAction

public void invokedAction(java.lang.String actionKey)
Notifies the listener that the given action, denoted by the key, was just invoked and completed successfully.

Parameters:
actionKey - the published key for the action

Extension SDK

 

Copyright © 1997, 2004, Oracle. All rights reserved.