Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorDavid Inglis2003-09-08 14:03:15 +0000
committerDavid Inglis2003-09-08 14:03:15 +0000
commitb871d57ad889b21b3cf10d7d9563831d90af7c99 (patch)
tree25e24fb5d25f26b820df383e99a0f0e60b381f58 /core
parent6c33540aabde6b2f8133184e7fac1897f31efa89 (diff)
downloadorg.eclipse.cdt-b871d57ad889b21b3cf10d7d9563831d90af7c99.tar.gz
org.eclipse.cdt-b871d57ad889b21b3cf10d7d9563831d90af7c99.tar.xz
org.eclipse.cdt-b871d57ad889b21b3cf10d7d9563831d90af7c99.zip
added scheme for CProject extension
Diffstat (limited to 'core')
-rw-r--r--core/org.eclipse.cdt.core/schema/CProject.exsd93
1 files changed, 93 insertions, 0 deletions
diff --git a/core/org.eclipse.cdt.core/schema/CProject.exsd b/core/org.eclipse.cdt.core/schema/CProject.exsd
new file mode 100644
index 00000000000..0b981ea3c71
--- /dev/null
+++ b/core/org.eclipse.cdt.core/schema/CProject.exsd
@@ -0,0 +1,93 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!-- Schema file written by PDE -->
+<schema targetNamespace="org.eclipse.cdt.core">
+<annotation>
+ <appInfo>
+ <meta.schema plugin="org.eclipse.cdt.core" id="CProject" name="%CProject.name"/>
+ </appInfo>
+ <documentation>
+ [Enter description of this extension point]
+ </documentation>
+ </annotation>
+
+ <element name="extension">
+ <complexType>
+ <sequence>
+ <element ref="cproject"/>
+ </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>
+ </annotation>
+ </attribute>
+ </complexType>
+ </element>
+
+ <element name="cproject">
+ <complexType>
+ <attribute name="class" type="string" use="required">
+ <annotation>
+ <documentation>
+
+ </documentation>
+ <appInfo>
+ <meta.attribute kind="java"/>
+ </appInfo>
+ </annotation>
+ </attribute>
+ </complexType>
+ </element>
+
+ <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>
+
+ <annotation>
+ <appInfo>
+ <meta.section type="copyright"/>
+ </appInfo>
+ <documentation>
+
+ </documentation>
+ </annotation>
+
+</schema>

Back to the top