ndai | b94eb26 | 2004-10-13 15:55:37 +0000 | [diff] [blame] | 1 | <?xml version='1.0' encoding='UTF-8'?>
|
| 2 | <!-- Schema file written by PDE -->
|
| 3 | <schema targetNamespace="org.eclipse.wst.server.ui">
|
| 4 | <annotation>
|
| 5 | <appInfo>
|
deboer | 616c3a1 | 2005-03-08 16:28:10 +0000 | [diff] [blame] | 6 | <meta.schema plugin="org.eclipse.wst.server.ui" id="editorPages" name="Editor Pages"/>
|
ndai | b94eb26 | 2004-10-13 15:55:37 +0000 | [diff] [blame] | 7 | </appInfo>
|
| 8 | <documentation>
|
| 9 | This extension point provides a way to add an additional page to a server or server configuration editor.
|
| 10 | </documentation>
|
| 11 | </annotation>
|
| 12 |
|
| 13 | <element name="extension">
|
| 14 | <complexType>
|
| 15 | <choice>
|
| 16 | <element ref="page"/>
|
| 17 | </choice>
|
| 18 | <attribute name="point" type="string" use="required">
|
| 19 | <annotation>
|
| 20 | <documentation>
|
| 21 | a fully qualified identifier of the target extension point
|
| 22 | </documentation>
|
| 23 | </annotation>
|
| 24 | </attribute>
|
| 25 | <attribute name="id" type="string">
|
| 26 | <annotation>
|
| 27 | <documentation>
|
| 28 | an optional identifier of the extension instance
|
| 29 | </documentation>
|
| 30 | </annotation>
|
| 31 | </attribute>
|
| 32 | <attribute name="name" type="string">
|
| 33 | <annotation>
|
| 34 | <documentation>
|
| 35 | an optional name of the extension instance
|
| 36 | </documentation>
|
| 37 | </annotation>
|
| 38 | </attribute>
|
| 39 | </complexType>
|
| 40 | </element>
|
| 41 |
|
| 42 | <element name="page">
|
| 43 | <annotation>
|
| 44 | <appInfo>
|
| 45 | <meta.element labelAttribute="name"/>
|
| 46 | </appInfo>
|
| 47 | </annotation>
|
| 48 | <complexType>
|
| 49 | <sequence>
|
| 50 | </sequence>
|
| 51 | <attribute name="id" type="string" use="required">
|
| 52 | <annotation>
|
| 53 | <documentation>
|
| 54 | specifies a unique identifier for this extension point
|
| 55 | </documentation>
|
| 56 | </annotation>
|
| 57 | </attribute>
|
| 58 | <attribute name="class" type="string" use="required">
|
| 59 | <annotation>
|
| 60 | <documentation>
|
deboer | 616c3a1 | 2005-03-08 16:28:10 +0000 | [diff] [blame] | 61 | specifies the fully qualified name of the Java class that implements <samp>org.eclipse.wst.server.ui.editor.ServerEditorPageSectionFactoryDelegate</samp>.
|
ndai | b94eb26 | 2004-10-13 15:55:37 +0000 | [diff] [blame] | 62 | </documentation>
|
| 63 | <appInfo>
|
deboer | 616c3a1 | 2005-03-08 16:28:10 +0000 | [diff] [blame] | 64 | <meta.attribute kind="java" basedOn="org.eclipse.wst.server.ui.editor.ServerEditorPageFactoryDelegate"/>
|
ndai | b94eb26 | 2004-10-13 15:55:37 +0000 | [diff] [blame] | 65 | </appInfo>
|
| 66 | </annotation>
|
| 67 | </attribute>
|
| 68 | <attribute name="name" type="string" use="required">
|
| 69 | <annotation>
|
| 70 | <documentation>
|
| 71 |
|
| 72 | </documentation>
|
| 73 | </annotation>
|
| 74 | </attribute>
|
| 75 | <attribute name="typeIds" type="string" use="required">
|
| 76 | <annotation>
|
| 77 | <documentation>
|
| 78 |
|
| 79 | </documentation>
|
| 80 | </annotation>
|
| 81 | </attribute>
|
| 82 | <attribute name="order" type="string">
|
| 83 | <annotation>
|
| 84 | <documentation>
|
| 85 |
|
| 86 | </documentation>
|
| 87 | </annotation>
|
| 88 | </attribute>
|
| 89 | <attribute name="insertionIds" type="string">
|
| 90 | <annotation>
|
| 91 | <documentation>
|
| 92 |
|
| 93 | </documentation>
|
| 94 | </annotation>
|
| 95 | </attribute>
|
| 96 | </complexType>
|
| 97 | </element>
|
| 98 |
|
| 99 | <annotation>
|
| 100 | <appInfo>
|
| 101 | <meta.section type="examples"/>
|
| 102 | </appInfo>
|
| 103 | <documentation>
|
| 104 | The following is an example of an editor page extension point: |
| 105 | |
| 106 | <p> |
| 107 | <pre> |
| 108 | <extension point="org.eclipse.wst.server.ui.editorPages"> |
| 109 | <page |
| 110 | id="com.example" |
| 111 | order="20" |
| 112 | name="%editorPage" |
| 113 | typeIds="com.example.*" |
| 114 | class="com.example.ExampleEditorFactory"/> |
| 115 | </extension> |
| 116 | </pre> |
| 117 | </p>
|
| 118 | </documentation>
|
| 119 | </annotation>
|
| 120 |
|
| 121 | <annotation>
|
| 122 | <appInfo>
|
| 123 | <meta.section type="apiInfo"/>
|
| 124 | </appInfo>
|
| 125 | <documentation>
|
deboer | da1df6a | 2004-12-03 13:35:32 +0000 | [diff] [blame] | 126 | Value of the attribute <b>class</b> must be a fully qualified name of a Java class that implements the interface <b>org.eclipse.wst.server.ui.editor.ServerEditorPartFactoryDelegate</b>.
|
ndai | b94eb26 | 2004-10-13 15:55:37 +0000 | [diff] [blame] | 127 | </documentation>
|
| 128 | </annotation>
|
| 129 |
|
| 130 | <annotation>
|
| 131 | <appInfo>
|
| 132 | <meta.section type="copyright"/>
|
| 133 | </appInfo>
|
| 134 | <documentation>
|
deboer | 09c692b | 2005-04-20 15:07:15 +0000 | [diff] [blame^] | 135 | Copyright (c) 2000, 2005 IBM Corporation and others.<br> |
ndai | b94eb26 | 2004-10-13 15:55:37 +0000 | [diff] [blame] | 136 | All rights reserved. This program and the accompanying materials are made |
deboer | df10c15 | 2005-02-17 18:24:46 +0000 | [diff] [blame] | 137 | available under the terms of the Eclipse Public License v1.0 which accompanies |
ndai | b94eb26 | 2004-10-13 15:55:37 +0000 | [diff] [blame] | 138 | this distribution, and is available at |
deboer | df10c15 | 2005-02-17 18:24:46 +0000 | [diff] [blame] | 139 | <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>
|
ndai | b94eb26 | 2004-10-13 15:55:37 +0000 | [diff] [blame] | 140 | </documentation>
|
| 141 | </annotation>
|
| 142 |
|
| 143 | </schema>
|