Launchable Adapters

org.eclipse.wst.server.core.launchableAdapters

1.0

This extension point provides a way for a server to support the Run on Server scenario.

<!ELEMENT extension (launchableAdapter+)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT launchableAdapter EMPTY>

<!ATTLIST launchableAdapter

id      CDATA #REQUIRED

class   CDATA #REQUIRED

typeIds CDATA #IMPLIED>


The following is an example of a launchable adapter extension point:
   

<extension point=

"org.eclipse.wst.server.core.launchableAdapters"

>

<launchableAdapter id=

"com.example.launchableAdapter"

class=

"com.example.ExampleLaunchableAdapterDelegate"

/>

</extension>

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