Editor Page Sections

Identifier:
org.eclipse.wst.server.ui.editorPageSections

Since:
1.0

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

Configuration Markup:

<!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>


Examples:
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>


Copyright (c) 2000, 2005 IBM Corporation and others.
All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html