Runtime Locators

org.eclipse.wst.server.core.runtimeLocators

1.0

This extension point is used to locate new runtimes on the local machine.

<!ELEMENT extension (runtimeLocator*)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT runtimeLocator EMPTY>

<!ATTLIST runtimeLocator

id      CDATA #REQUIRED

class   CDATA #REQUIRED

typeIds CDATA #REQUIRED>


The following is an example of a runtime locator extension point:
   

<extension point=

"org.eclipse.wst.server.core.runtimeLocators"

>

<runtimeLocator id=

"com.example.locator"

name=

"%runtimeLocatorName"

description=

"%runtimeLocatorDescription"

class=

"com.example.ExampleRuntimeLocator"

/>

</extension>

Value of the attribute class must be a fully qualified name of a Java class that extends org.eclipse.wst.server.core.model.RuntimeLocatorDelegate and contains a public 0-arg constructor.