Startup

org.eclipse.wst.internet.monitor.core.internalStartup

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

This extension point is used to load a secondary plugin. The extension point will be called when the monitor core plugin starts up.

<!ELEMENT extension (startup+)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT startup EMPTY>

<!ATTLIST startup

id    CDATA #REQUIRED

class CDATA #IMPLIED>


The following is an example of a startup extension point:
   

<extension point=

"org.eclipse.wst.internet.monitor.core.internal.startups"

>

<startup id=

"com.example.myplugin"

class=

"com.example.myplugin.Startup"

/>

</extension>

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