deboer | 7d78b90 | 2005-04-15 21:05:21 +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>
|
| 6 | <meta.schema plugin="org.eclipse.wst.server.ui" id="moduleArtifactAdapters" name="Module Artifact Adapters"/>
|
| 7 | </appInfo>
|
| 8 | <documentation>
|
| 9 |
|
| 10 | </documentation>
|
| 11 | </annotation>
|
| 12 |
|
| 13 | <include schemaLocation="schema://org.eclipse.core.expressions/schema/expressionLanguage.exsd"/>
|
| 14 |
|
| 15 | <element name="extension">
|
| 16 | <complexType>
|
| 17 | <sequence>
|
| 18 | <element ref="moduleArtifactAdapter" minOccurs="0" maxOccurs="unbounded"/>
|
| 19 | </sequence>
|
| 20 | <attribute name="point" type="string" use="required">
|
| 21 | <annotation>
|
| 22 | <documentation>
|
| 23 | a fully qualified identifier of the target extension point
|
| 24 | </documentation>
|
| 25 | </annotation>
|
| 26 | </attribute>
|
| 27 | <attribute name="id" type="string">
|
| 28 | <annotation>
|
| 29 | <documentation>
|
| 30 | an optional identifier of the extension instance
|
| 31 | </documentation>
|
| 32 | </annotation>
|
| 33 | </attribute>
|
| 34 | <attribute name="name" type="string">
|
| 35 | <annotation>
|
| 36 | <documentation>
|
| 37 | an optional name of the extension instance
|
| 38 | </documentation>
|
| 39 | </annotation>
|
| 40 | </attribute>
|
| 41 | </complexType>
|
| 42 | </element>
|
| 43 |
|
| 44 | <element name="moduleArtifactAdapter">
|
| 45 | <annotation>
|
| 46 | <appInfo>
|
| 47 | <meta.element labelAttribute="name"/>
|
| 48 | </appInfo>
|
| 49 | </annotation>
|
| 50 | <complexType>
|
| 51 | <sequence>
|
| 52 | <element ref="enablement"/>
|
| 53 | </sequence>
|
| 54 | <attribute name="id" type="string" use="required">
|
| 55 | <annotation>
|
| 56 | <documentation>
|
| 57 | specifies a unique identifier for this extension point
|
| 58 | </documentation>
|
| 59 | </annotation>
|
| 60 | </attribute>
|
| 61 | <attribute name="class" type="string">
|
| 62 | <annotation>
|
| 63 | <documentation>
|
| 64 | specifies the fully qualified name of the Java class that implements <samp>org.eclipse.wst.server.core.model.ModuleArtifactAdapterDelegate</samp>.
|
| 65 | </documentation>
|
| 66 | <appInfo>
|
| 67 | <meta.attribute kind="java" basedOn="org.eclipse.wst.server.core.model.ModuleArtifactAdapterDelegate"/>
|
| 68 | </appInfo>
|
| 69 | </annotation>
|
| 70 | </attribute>
|
deboer | abb4bd5 | 2005-04-17 18:56:32 +0000 | [diff] [blame] | 71 | <attribute name="priority" type="string">
|
deboer | 7d78b90 | 2005-04-15 21:05:21 +0000 | [diff] [blame] | 72 | <annotation>
|
| 73 | <documentation>
|
deboer | abb4bd5 | 2005-04-17 18:56:32 +0000 | [diff] [blame] | 74 | an optional priority atrribute which specifies a relative ordering of artifact adapters. Adapters with a higher number are always used first. To override another adapter, simply provide a higher priority value that the other adapter. The priority is 0 if no priority is specified
|
deboer | 7d78b90 | 2005-04-15 21:05:21 +0000 | [diff] [blame] | 75 | </documentation>
|
| 76 | </annotation>
|
| 77 | </attribute>
|
| 78 | </complexType>
|
| 79 | </element>
|
| 80 |
|
| 81 | <annotation>
|
| 82 | <appInfo>
|
| 83 | <meta.section type="examples"/>
|
| 84 | </appInfo>
|
| 85 | <documentation>
|
deboer | a59a491 | 2005-01-18 23:28:22 +0000 | [diff] [blame] | 86 | The following is an example of a module object adapter extension point: |
| 87 | |
| 88 | <p> |
| 89 | <pre> |
| 90 | |
| 91 | </pre> |
deboer | 7d78b90 | 2005-04-15 21:05:21 +0000 | [diff] [blame] | 92 | </p>
|
| 93 | </documentation>
|
| 94 | </annotation>
|
| 95 |
|
| 96 | <annotation>
|
| 97 | <appInfo>
|
| 98 | <meta.section type="apiInfo"/>
|
| 99 | </appInfo>
|
| 100 | <documentation>
|
| 101 | Value of the attribute <b>class</b> must be a fully qualified name of a Java class that extends <b>org.eclipse.wst.server.core.model.ModuleArtifactAdapterDelegate</b> and contains a public 0-arg constructor.
|
| 102 | </documentation>
|
| 103 | </annotation>
|
| 104 |
|
| 105 | <annotation>
|
| 106 | <appInfo>
|
| 107 | <meta.section type="copyright"/>
|
| 108 | </appInfo>
|
| 109 | <documentation>
|
deboer | 09c692b | 2005-04-20 15:07:15 +0000 | [diff] [blame^] | 110 | Copyright (c) 2000, 2005 IBM Corporation and others.<br> |
deboer | a59a491 | 2005-01-18 23:28:22 +0000 | [diff] [blame] | 111 | All rights reserved. This program and the accompanying materials are made |
deboer | df10c15 | 2005-02-17 18:24:46 +0000 | [diff] [blame] | 112 | available under the terms of the Eclipse Public License v1.0 which accompanies |
deboer | a59a491 | 2005-01-18 23:28:22 +0000 | [diff] [blame] | 113 | this distribution, and is available at |
deboer | 7d78b90 | 2005-04-15 21:05:21 +0000 | [diff] [blame] | 114 | <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>
|
| 115 | </documentation>
|
| 116 | </annotation>
|
| 117 |
|
| 118 | </schema>
|