Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Extension SDK
11g Release 2 (11.1.2.2.0)

E17493-03


javax.ide.extension
Interface OnDemandElementVisitorListener


public interface OnDemandElementVisitorListener

A listener for ElementVisitor start and end events. This listener can be added to a specific ElementVisitor to receive start and end event notifications.


Method Summary
 void ended(java.lang.String extensionId)
          Called from ElementVisitor.end(javax.ide.extension.ElementEndContext) after all processing is complete.
 void starting(java.lang.String extensionId)
          Signifies that menu registration is about to start.

 

Method Detail

starting

void starting(java.lang.String extensionId)
Signifies that menu registration is about to start. This notification happens before registration of elements in given tag begins.
Parameters:
extensionId - the id of the extension being processed

ended

void ended(java.lang.String extensionId)
Called from ElementVisitor.end(javax.ide.extension.ElementEndContext) after all processing is complete. Signifies that registration has finished. Note that this does not necessarily mean that all occurrences of a given element have been registered; there may be more than one occurrence of the element in a hook. You will be notified each time the element's visitor is started and finished.
Parameters:
extensionId - the id of the extension being processed

Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Extension SDK
11g Release 2 (11.1.2.2.0)

E17493-03


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