blob: 85981fbcd7e090b78480a94a552e4083bc81bd8a [file] [log] [blame]
<?xml version='1.0' encoding='UTF-8'?>
<!-- Schema file written by PDE -->
<schema targetNamespace="org.eclipse.update.core">
<annotation>
<appInfo>
<meta.schema plugin="org.eclipse.update.core" id="featureTypes" name="Feature Type Factory"/>
</appInfo>
<documentation>
&lt;p&gt;The platform update mechanism supports pluggable feature type
implementations. A new feature type can be registered in order
to support
alternate packaging and verification schemes.
&lt;/p&gt;
&lt;p&gt;
The &lt;code&gt;featureTypes&lt;/code&gt;
extension point allows alternate feature implementations to be
registered using a symbolic type identifier. Whenever the
type is referenced using this identifier, the supplied factory
is used to create the correct concrete feature implementation.
&lt;/p&gt;
</documentation>
</annotation>
<element name="extension">
<complexType>
<sequence>
<element ref="feature-factory" minOccurs="1" maxOccurs="unbounded"/>
</sequence>
<attribute name="point" type="string" use="required">
<annotation>
<documentation>
must be specified as &lt;b&gt;org.eclipse.update.core.featureTypes&lt;/b&gt;
</documentation>
</annotation>
</attribute>
<attribute name="id" type="string">
<annotation>
<documentation>
must be specified. Identifies the new feature type
</documentation>
</annotation>
</attribute>
<attribute name="name" type="string">
<annotation>
<documentation>
optional displayable label for the new feature type
</documentation>
</annotation>
</attribute>
</complexType>
</element>
<element name="feature-factory">
<complexType>
<attribute name="class" type="string" use="required">
<annotation>
<documentation>
fully qualified name of the factory class for the identified feature type
</documentation>
<appInfo>
<meta.attribute kind="java" basedOn="org.eclipse.update.configuration.IInstallDeltaHandler"/>
</appInfo>
</annotation>
</attribute>
</complexType>
</element>
<annotation>
<appInfo>
<meta.section type="examples"/>
</appInfo>
<documentation>
The following is an example of new feature type registration.
&lt;br&gt;&lt;br&gt;
&lt;code&gt;
&amp;lt;extension&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;id="custom"&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;point="org.eclipse.update.core.featureTypes"&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;name="Custom packaged feature"&amp;gt;&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;feature-factory&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;class="com.xyz.update.CustomFeatureFactory"&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;/feature-factory&amp;gt;&lt;br&gt;
&amp;lt;/extension&amp;gt;&lt;br&gt;
&lt;/code&gt;
</documentation>
</annotation>
<annotation>
<appInfo>
<meta.section type="apiInfo"/>
</appInfo>
<documentation>
Registered factory classes must implement
&lt;code&gt;&lt;b&gt;org.eclipse.update.core.IFeatureFactory&lt;/b&gt;&lt;/code&gt;
</documentation>
</annotation>
<annotation>
<appInfo>
<meta.section type="implementation"/>
</appInfo>
<documentation>
The platform supplies two standard implementations of feature
types. One representing the default packaged feature type, and
the other representing an installed feature type.
</documentation>
</annotation>
<annotation>
<appInfo>
<meta.section type="copyright"/>
</appInfo>
<documentation>
&lt;br&gt;
&lt;br&gt;&lt;a href="hglegal.htm"&gt;&lt;img SRC="ngibmcpy.gif"
ALT="Copyright IBM Corp. and others 2000, 2002. All Rights Reserved."
BORDER=0&gt;&lt;/a&gt;
</documentation>
</annotation>
</schema>