Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Inglis2004-04-19 15:51:31 +0000
committerDavid Inglis2004-04-19 15:51:31 +0000
commit6f06f8815520d75614ffb1a1f19774f3845f375a (patch)
tree30677bec64c11c9bfd0e17691ba2a52eb3f333b2 /core/org.eclipse.cdt.core/schema
parent010da4dcb9f718c4975045efc6c2637e13ac9c79 (diff)
downloadorg.eclipse.cdt-6f06f8815520d75614ffb1a1f19774f3845f375a.tar.gz
org.eclipse.cdt-6f06f8815520d75614ffb1a1f19774f3845f375a.tar.xz
org.eclipse.cdt-6f06f8815520d75614ffb1a1f19774f3845f375a.zip
fixed dead lock
missing extension point fix CCorePlugin.log
Diffstat (limited to 'core/org.eclipse.cdt.core/schema')
-rw-r--r--core/org.eclipse.cdt.core/schema/PathEntryContainerInitializer.exsd109
1 files changed, 109 insertions, 0 deletions
diff --git a/core/org.eclipse.cdt.core/schema/PathEntryContainerInitializer.exsd b/core/org.eclipse.cdt.core/schema/PathEntryContainerInitializer.exsd
new file mode 100644
index 00000000000..50cdfd4dde1
--- /dev/null
+++ b/core/org.eclipse.cdt.core/schema/PathEntryContainerInitializer.exsd
@@ -0,0 +1,109 @@
+<?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="pathEntryContainerInitializer" name="%PathEntryContainerInitializer"/>
+ </appInfo>
+ <documentation>
+ [Enter description of this extension point.]
+ </documentation>
+ </annotation>
+
+ <element name="extension">
+ <complexType>
+ <sequence>
+ <element ref="pathEntryContainerInitializer"/>
+ </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>
+ </annotation>
+ </attribute>
+ </complexType>
+ </element>
+
+ <element name="pathEntryContainerInitializer">
+ <complexType>
+ <attribute name="id" type="string" use="required">
+ <annotation>
+ <documentation>
+
+ </documentation>
+ </annotation>
+ </attribute>
+ <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="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>
+
+ <annotation>
+ <appInfo>
+ <meta.section type="copyright"/>
+ </appInfo>
+ <documentation>
+
+ </documentation>
+ </annotation>
+
+</schema>

Back to the top