Skip navigation links

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

E17493-04


oracle.ide.runner
Interface StarterFactoryProvider


public interface StarterFactoryProvider

StarterFactoryProviders can lazily provide StarterFactories for the runner, debugger and profiler. The providers can make trigger hook registrations with extensive rules to make it possible to only load, and initialize, the exact StarterFactory that is needed to run a particular Node. Register StarterFactoryProviders in an extension.xml file as follows:
<trigger-hooks xmlns="http://xmlns.oracle.com/ide/extension">
<triggers>
<runner-hook xmlns="http://xmlns.oracle.com/ide/extension/runner">
<starter-factory-provider class="mypackage.MyStarterFactoryProvider">
target-class="mypackage2.MyNode"/>
</triggers>
</trigger-hooks>

Since:
11.1.2.0.0

Method Summary
 java.util.List<StarterFactoryDescription> getNewStarterFactories()
          Get the list of newly discovered StarterFactories.

 

Method Detail

getNewStarterFactories

java.util.List<StarterFactoryDescription> getNewStarterFactories()
Get the list of newly discovered StarterFactories. Each StarterFactory should only be reported once
Returns:
A list of StarterFactoryDescriptions

Skip navigation links

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

E17493-04


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