Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorspingel2008-11-04 01:19:58 +0000
committerspingel2008-11-04 01:19:58 +0000
commit5b8c1eb7ce003bd582b8cd7c6cc78078442171ce (patch)
treef039f27b3526c39d0195deabd3f384c79f8eb4a3 /org.eclipse.mylyn.tasks.ui/schema
parenta1ac2acb1fd6f1e849fee7a2fb92442149cd08ad (diff)
downloadorg.eclipse.mylyn.tasks-5b8c1eb7ce003bd582b8cd7c6cc78078442171ce.tar.gz
org.eclipse.mylyn.tasks-5b8c1eb7ce003bd582b8cd7c6cc78078442171ce.tar.xz
org.eclipse.mylyn.tasks-5b8c1eb7ce003bd582b8cd7c6cc78078442171ce.zip
NEW - bug 244653: [patch][api] extension for repository properties wizard page
https://bugs.eclipse.org/bugs/show_bug.cgi?id=244653
Diffstat (limited to 'org.eclipse.mylyn.tasks.ui/schema')
-rw-r--r--org.eclipse.mylyn.tasks.ui/schema/taskRepositoryPageContribution.exsd119
1 files changed, 119 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.tasks.ui/schema/taskRepositoryPageContribution.exsd b/org.eclipse.mylyn.tasks.ui/schema/taskRepositoryPageContribution.exsd
new file mode 100644
index 000000000..96c9afcce
--- /dev/null
+++ b/org.eclipse.mylyn.tasks.ui/schema/taskRepositoryPageContribution.exsd
@@ -0,0 +1,119 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!-- Schema file written by PDE -->
+<schema targetNamespace="org.eclipse.mylyn.tasks.ui" xmlns="http://www.w3.org/2001/XMLSchema">
+<annotation>
+ <appinfo>
+ <meta.schema plugin="org.eclipse.mylyn.tasks.ui" id="taskRepositoryPageContribution" name="Task Repository Page Contribution"/>
+ </appinfo>
+ <documentation>
+ This extension point enables plug-ins to contribute user interface to the task repository settings dialog.
+ </documentation>
+ </annotation>
+
+ <element name="extension">
+ <annotation>
+ <appinfo>
+ <meta.element />
+ </appinfo>
+ </annotation>
+ <complexType>
+ <sequence>
+ <element ref="taskRepositoryPageContribution" minOccurs="1" maxOccurs="unbounded"/>
+ </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="taskRepositoryPageContribution">
+ <complexType>
+ <attribute name="class" type="string" use="required">
+ <annotation>
+ <documentation>
+
+ </documentation>
+ <appinfo>
+ <meta.attribute kind="java" basedOn="org.eclipse.mylyn.tasks.ui.wizards.AbstractTaskRepositoryPageContribution:"/>
+ </appinfo>
+ </annotation>
+ </attribute>
+ <attribute name="connectorKind" type="string">
+ <annotation>
+ <documentation>
+ the kind of repository connector for which this contributor should be used, or &quot;&quot; (the empty string) if it applies to all connectors
+ </documentation>
+ </annotation>
+ </attribute>
+ <attribute name="id" type="string" use="required">
+ <annotation>
+ <documentation>
+ a unique identifier that identifies the contribution
+ </documentation>
+ </annotation>
+ </attribute>
+ </complexType>
+ </element>
+
+ <annotation>
+ <appinfo>
+ <meta.section type="since"/>
+ </appinfo>
+ <documentation>
+ 3.1
+ </documentation>
+ </annotation>
+
+ <annotation>
+ <appinfo>
+ <meta.section type="examples"/>
+ </appinfo>
+ <documentation>
+ &lt;extension
+ point=&quot;org.eclipse.mylyn.tasks.ui.taskRepositoryPageContribution&quot;&gt;
+ &lt;taskRepositoryPageContribution class=&quot;org.eclipse.mylyn.internal.tasks.ui.wizards.TaskEditorExtensionSettingsContribution&quot;/&gt;
+ &lt;/extension&gt;
+ </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