Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Recoskie2011-04-21 19:15:20 +0000
committerChris Recoskie2011-04-21 19:15:20 +0000
commitff9885b6e4dbd8644e06fd5662412da7e2a13a94 (patch)
treea859b192eb010687c537ac117c1f489e840c0359 /core/org.eclipse.cdt.core/schema
parenteca2f20595ac79ccd92f0cee9493e708fcfff7f3 (diff)
downloadorg.eclipse.cdt-ff9885b6e4dbd8644e06fd5662412da7e2a13a94.tar.gz
org.eclipse.cdt-ff9885b6e4dbd8644e06fd5662412da7e2a13a94.tar.xz
org.eclipse.cdt-ff9885b6e4dbd8644e06fd5662412da7e2a13a94.zip
Bug 133881 - Make refreshing after building optional
Work in progress.
Diffstat (limited to 'core/org.eclipse.cdt.core/schema')
-rw-r--r--core/org.eclipse.cdt.core/schema/RefreshExclusionFactory.exsd134
1 files changed, 134 insertions, 0 deletions
diff --git a/core/org.eclipse.cdt.core/schema/RefreshExclusionFactory.exsd b/core/org.eclipse.cdt.core/schema/RefreshExclusionFactory.exsd
new file mode 100644
index 00000000000..c683ea2f9bc
--- /dev/null
+++ b/core/org.eclipse.cdt.core/schema/RefreshExclusionFactory.exsd
@@ -0,0 +1,134 @@
+<?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="RefreshExclusionFactory" name="Refresh Exclusion Factory"/>
+ </appInfo>
+ <documentation>
+ This extension point allows ISVs to contribute factory classes that know how to instantiate a given type of RefreshExclusion. Usage of this extension point is mandatory when contributing new types of RefreshExclusions as otherwise CDT cannot instantiate the proper exclusions when loading persisted settings relating to the refresh policy for a given project.
+ </documentation>
+ </annotation>
+
+ <element name="extension">
+ <annotation>
+ <appInfo>
+ <meta.element />
+ </appInfo>
+ </annotation>
+ <complexType>
+ <sequence minOccurs="1" maxOccurs="unbounded">
+ <element ref="exclusionFactory"/>
+ </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="exclusionFactory">
+ <complexType>
+ <attribute name="factoryClass" type="string" use="required">
+ <annotation>
+ <documentation>
+ The factory that is used to create objects of the type specified in the exclusionClass and/or the instanceClass attribute.
+ </documentation>
+ <appInfo>
+ <meta.attribute kind="java" basedOn="org.eclipse.cdt.core.resources.RefreshExclusionFactory:"/>
+ </appInfo>
+ </annotation>
+ </attribute>
+ <attribute name="exclusionClass" type="string">
+ <annotation>
+ <documentation>
+ Optionally specifies the fully qualified typename of a RefreshExclusion that this factory creates objects for.
+ </documentation>
+ <appInfo>
+ <meta.attribute kind="java" basedOn="org.eclipse.cdt.core.resources.RefreshExclusion:"/>
+ </appInfo>
+ </annotation>
+ </attribute>
+ <attribute name="instanceClass" type="string">
+ <annotation>
+ <documentation>
+ Optionally specifies the fully qualified typename of a RefreshExclusion that this factory creates objects for.
+ </documentation>
+ <appInfo>
+ <meta.attribute kind="java" basedOn="org.eclipse.cdt.core.resources.ExclusionInstance:"/>
+ </appInfo>
+ </annotation>
+ </attribute>
+ </complexType>
+ </element>
+
+ <annotation>
+ <appInfo>
+ <meta.section type="since"/>
+ </appInfo>
+ <documentation>
+ 5.3.0
+ </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>
+ Copyright (c) 2011 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>

Back to the top