Startup

org.eclipse.wst.server.core.internalStartup

This extension point is internal and should not be used by any other plugins.

This extension point provides a way to invoke code during the server core plugin startup. Use sparingly.

<!ELEMENT extension (startup+)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT startup EMPTY>

<!ATTLIST startup

id    CDATA #REQUIRED

class CDATA #REQUIRED>


The following is an example of a startup extension point:
   

<extension point=

"org.eclipse.wst.server.core.startup"

>

<startup id=

"com.example.startup"

class=

"com.example.ExampleStartup"

/>

</extension>

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