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>
- point - a fully qualified identifier of the target extension point
- id - an optional identifier of the extension instance
- name - an optional name of the extension instance
<!ELEMENT section (enablement?)>
<!ATTLIST section
id CDATA #REQUIRED
class CDATA #REQUIRED
typeIds CDATA #IMPLIED
order CDATA #IMPLIED
insertionId CDATA #IMPLIED>
- id - specifies a unique identifier for this section
- class - specifies the fully qualified name of the Java class that extends org.eclipse.wst.server.ui.editor.ServerEditorSection
- typeIds - a comma separated list of server type ids. May include wildcards (*) at the end of an id
- order - an integer that specifies an absolute ordering of the section relative to other sections
- insertionId - the editor page insertion id that this section should be inserted into
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>
API Information:
Value of the attribute class must be a fully qualified name of a Java class that extends org.eclipse.wst.server.ui.editor.ServerEditorPageSectionFactoryDelegate
.
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