Clients

org.eclipse.wst.server.core.clients

1.0

This extension point provides a way to launch a client for a specific type of resource that is being run on a server.

<!ELEMENT extension (client+)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT client (enablement?)>

<!ATTLIST client

id          CDATA #REQUIRED

class       CDATA #REQUIRED

name        CDATA #IMPLIED

description CDATA #IMPLIED

launchable  CDATA #IMPLIED

priority    CDATA #IMPLIED>


The following is an example of a client extension point:
   

<extension point=

"org.eclipse.wst.server.core.clients"

>

<client id=

"com.example.clients"

name=

"%clientName"

description=

"%clientDescription"

class=

"com.example.ExampleClient"

/>

</extension>

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