public interface ActionPostInvoker
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.
BasicEditorPane, 
ActionHookInvoker| Modifier and Type | Method and Description | 
|---|---|
void | 
invokedAction(java.lang.String actionKey)
Notifies the listener that the given action, denoted by the key,
 was just invoked and completed successfully. 
 |