Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDoug Schaefer2005-09-09 19:31:41 +0000
committerDoug Schaefer2005-09-09 19:31:41 +0000
commit5d8d0dacaac7dba7b3eb1df3de422cd703cab1c7 (patch)
tree46bae18e2fdbae441a2db38cac66af06cf28d50f /core/org.eclipse.cdt.core/schema/PDOMDatabaseProvider.exsd
parent0d47484eda391f7a51cc7f32f54408892efdc93b (diff)
downloadorg.eclipse.cdt-5d8d0dacaac7dba7b3eb1df3de422cd703cab1c7.tar.gz
org.eclipse.cdt-5d8d0dacaac7dba7b3eb1df3de422cd703cab1c7.tar.xz
org.eclipse.cdt-5d8d0dacaac7dba7b3eb1df3de422cd703cab1c7.zip
Added in hooks to plugin a database for the PDOM.
Diffstat (limited to 'core/org.eclipse.cdt.core/schema/PDOMDatabaseProvider.exsd')
-rw-r--r--core/org.eclipse.cdt.core/schema/PDOMDatabaseProvider.exsd112
1 files changed, 112 insertions, 0 deletions
diff --git a/core/org.eclipse.cdt.core/schema/PDOMDatabaseProvider.exsd b/core/org.eclipse.cdt.core/schema/PDOMDatabaseProvider.exsd
new file mode 100644
index 00000000000..61cce184201
--- /dev/null
+++ b/core/org.eclipse.cdt.core/schema/PDOMDatabaseProvider.exsd
@@ -0,0 +1,112 @@
+<?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="PDOMDatabaseProvider" name="%PDOMDatabaseProvider"/>
+ </appInfo>
+ <documentation>
+ This extension point provides the database to be used for the Persistent DOM.
+ </documentation>
+ </annotation>
+
+ <element name="extension">
+ <complexType>
+ <sequence>
+ <element ref="provider"/>
+ </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="provider">
+ <complexType>
+ <attribute name="id" type="string" use="required">
+ <annotation>
+ <documentation>
+
+ </documentation>
+ </annotation>
+ </attribute>
+ <attribute name="class" type="string">
+ <annotation>
+ <documentation>
+
+ </documentation>
+ <appInfo>
+ <meta.attribute kind="java" basedOn="org.eclipse.cdt.core.pdom.IPDOMDatabaseProvider"/>
+ </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