blob: e2146037cf54177c91c8a7415107c88345d525e7 [file] [log] [blame]
<?xml version='1.0' encoding='UTF-8'?>
<!-- Schema file written by PDE -->
<schema targetNamespace="org.eclipse.equinox.initializer">
<annotation>
<appInfo>
<meta.schema plugin="org.eclipse.equinox.initializer" id="initializers" name="Plug-in Initializers"/>
</appInfo>
<documentation>
Platform runtime supports plug-ins which would like to
be initialized. That is, plug-ins that needs to be initialized when
the initialization application is being run should provide an extension
to this extension-point.
The initializers are run when the org.eclipse.equinox.initializer.configInitializer application is being run. The initializers are run in any order.
</documentation>
</annotation>
<element name="extension">
<complexType>
<sequence>
<element ref="initializer"/>
</sequence>
<attribute name="point" type="string" use="required">
<annotation>
<documentation>
</documentation>
</annotation>
</attribute>
<attribute name="id" type="string" use="required">
<annotation>
<documentation>
</documentation>
</annotation>
</attribute>
<attribute name="name" type="string">
<annotation>
<documentation>
</documentation>
<appInfo>
<meta.attribute translatable="true"/>
</appInfo>
</annotation>
</attribute>
</complexType>
</element>
<element name="initializer">
<complexType>
<sequence>
<element ref="initialize"/>
</sequence>
</complexType>
</element>
<element name="initialize">
<complexType>
<sequence>
<element ref="initialize"/>
</sequence>
<attribute name="class" type="string" use="required">
<annotation>
<documentation>
</documentation>
<appInfo>
<meta.attribute kind="java" basedOn="org.eclipse.core.runtime.IPlatformRunnable"/>
</appInfo>
</annotation>
</attribute>
</complexType>
</element>
<annotation>
<appInfo>
<meta.section type="since"/>
</appInfo>
<documentation>
3.1
</documentation>
</annotation>
<annotation>
<appInfo>
<meta.section type="examples"/>
</appInfo>
<documentation>
Following is an example of initializer declaration:
&lt;p&gt;
&lt;pre&gt;
&lt;extension id=&quot;myInitializer&quot; point=&quot;org.eclipse.equinox.initializer.initializers&quot;&gt;
&lt;initializer&gt;
&lt;initialize class=&quot;myInitializer.Doit&quot;/&gt;
&lt;/initializer&gt;
&lt;/extension&gt;
&lt;/pre&gt;
&lt;/p&gt;
</documentation>
</annotation>
<annotation>
<appInfo>
<meta.section type="apiInfo"/>
</appInfo>
<documentation>
The value of the class attribute must represent an
implementor of
&lt;samp&gt;org.eclipse.core.runtime.IPlatformRunnable&lt;/samp&gt;.
</documentation>
</annotation>
<annotation>
<appInfo>
<meta.section type="implementation"/>
</appInfo>
<documentation>
[Enter information about supplied implementation of this extension point.]
</documentation>
</annotation>
<annotation>
<appInfo>
<meta.section type="copyright"/>
</appInfo>
<documentation>
Copyright (c) 2005 IBM Corporation and others.&lt;br&gt;
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
&lt;a
href=&quot;http://www.eclipse.org/legal/epl-v10.html&quot;&gt;http://www.eclipse.org/legal/epl-v10.html&lt;/a&gt;
</documentation>
</annotation>
</schema>