Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDoug Schaefer2015-09-25 21:01:37 +0000
committerGerrit Code Review @ Eclipse.org2015-09-28 17:24:41 +0000
commit64bf3c4f69e00d4246552505d67521ce2167178c (patch)
treec25a42b9c579136a03be4c3e3eb896b040f70c9a /core/org.eclipse.cdt.core/schema/ToolChainFactory.exsd
parent7ba4959cf4293cbd17726f22b49d89c6bc444b04 (diff)
downloadorg.eclipse.cdt-64bf3c4f69e00d4246552505d67521ce2167178c.tar.gz
org.eclipse.cdt-64bf3c4f69e00d4246552505d67521ce2167178c.tar.xz
org.eclipse.cdt-64bf3c4f69e00d4246552505d67521ce2167178c.zip
Starting to put Qt onto the new build system and launch.
Diffstat (limited to 'core/org.eclipse.cdt.core/schema/ToolChainFactory.exsd')
-rw-r--r--core/org.eclipse.cdt.core/schema/ToolChainFactory.exsd109
1 files changed, 109 insertions, 0 deletions
diff --git a/core/org.eclipse.cdt.core/schema/ToolChainFactory.exsd b/core/org.eclipse.cdt.core/schema/ToolChainFactory.exsd
new file mode 100644
index 00000000000..bc18ce610ab
--- /dev/null
+++ b/core/org.eclipse.cdt.core/schema/ToolChainFactory.exsd
@@ -0,0 +1,109 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!-- Schema file written by PDE -->
+<schema targetNamespace="org.eclipse.cdt.core" xmlns="http://www.w3.org/2001/XMLSchema">
+<annotation>
+ <appInfo>
+ <meta.schema plugin="org.eclipse.cdt.core" id="ToolChainFactory" name="Tool Chain Factory"/>
+ </appInfo>
+ <documentation>
+ [Enter description of this extension point.]
+ </documentation>
+ </annotation>
+
+ <element name="extension">
+ <annotation>
+ <appInfo>
+ <meta.element />
+ </appInfo>
+ </annotation>
+ <complexType>
+ <sequence minOccurs="1" maxOccurs="unbounded">
+ <element ref="factory"/>
+ </sequence>
+ <attribute name="point" type="string" use="required">
+ <annotation>
+ <documentation>
+
+ </documentation>
+ </annotation>
+ </attribute>
+ <attribute name="id" type="string">
+ <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="factory">
+ <complexType>
+ <attribute name="family" type="string" use="required">
+ <annotation>
+ <documentation>
+
+ </documentation>
+ </annotation>
+ </attribute>
+ <attribute name="class" type="string" use="required">
+ <annotation>
+ <documentation>
+
+ </documentation>
+ <appInfo>
+ <meta.attribute kind="java" basedOn=":org.eclipse.cdt.core.build.IToolChainFactory"/>
+ </appInfo>
+ </annotation>
+ </attribute>
+ </complexType>
+ </element>
+
+ <annotation>
+ <appInfo>
+ <meta.section type="since"/>
+ </appInfo>
+ <documentation>
+ [Enter the first release in which this extension point appears.]
+ </documentation>
+ </annotation>
+
+ <annotation>
+ <appInfo>
+ <meta.section type="examples"/>
+ </appInfo>
+ <documentation>
+ [Enter extension point usage example here.]
+ </documentation>
+ </annotation>
+
+ <annotation>
+ <appInfo>
+ <meta.section type="apiinfo"/>
+ </appInfo>
+ <documentation>
+ [Enter API information here.]
+ </documentation>
+ </annotation>
+
+ <annotation>
+ <appInfo>
+ <meta.section type="implementation"/>
+ </appInfo>
+ <documentation>
+ [Enter information about supplied implementation of this extension point.]
+ </documentation>
+ </annotation>
+
+
+</schema>

Back to the top