Editor Page Sections

org.eclipse.wst.server.ui.editorPageSections

1.0

This extension point provides a way to add additional sections into an existing server editor page that contains insertion points.

<!ELEMENT extension (section+)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT section (enablement?)>

<!ATTLIST section

id          CDATA #REQUIRED

class       CDATA #REQUIRED

typeIds     CDATA #IMPLIED

order       CDATA #IMPLIED

insertionId CDATA #IMPLIED>


The following is an example of an editor page section extension point:
   

<extension point=

"org.eclipse.wst.server.ui.editorPageSections"

>

<section id=

"com.example"

order=

"0"

insertionId=

"com.example.left"

typeIds=

"com.example.*"

class=

"com.example.ExampleEditorSectionFactory"

/>

</extension>

Value of the attribute class must be a fully qualified name of a Java class that extends org.eclipse.wst.server.ui.editor.ServerEditorPageSectionFactoryDelegate.