Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Green2011-10-23 15:17:15 +0000
committerSteffen Pingel2011-10-23 15:17:15 +0000
commitc8da98fedf83c557c3092d7fa741c7f45303229c (patch)
tree0cd48e504483556ffcf9b8b98f7ff40183e3c80e /org.eclipse.mylyn.tasks.ui/schema
parent8d5132e57c898e8826764fe3ad29c4ea8f912d1f (diff)
downloadorg.eclipse.mylyn.tasks-c8da98fedf83c557c3092d7fa741c7f45303229c.tar.gz
org.eclipse.mylyn.tasks-c8da98fedf83c557c3092d7fa741c7f45303229c.tar.xz
org.eclipse.mylyn.tasks-c8da98fedf83c557c3092d7fa741c7f45303229c.zip
NEW - bug 359518: [api] provide extension point to register alternative
task list search implementation https://bugs.eclipse.org/bugs/show_bug.cgi?id=359518
Diffstat (limited to 'org.eclipse.mylyn.tasks.ui/schema')
-rw-r--r--org.eclipse.mylyn.tasks.ui/schema/searchHandler.exsd90
1 files changed, 90 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.tasks.ui/schema/searchHandler.exsd b/org.eclipse.mylyn.tasks.ui/schema/searchHandler.exsd
new file mode 100644
index 000000000..cf95eec1e
--- /dev/null
+++ b/org.eclipse.mylyn.tasks.ui/schema/searchHandler.exsd
@@ -0,0 +1,90 @@
+<?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="searchHandler" name="Search Handler"/>
+ </appInfo>
+ <documentation>
+
+ </documentation>
+ </annotation>
+
+ <element name="extension">
+ <annotation>
+ <appInfo>
+ <meta.element internal="true" />
+ </appInfo>
+ </annotation>
+ <complexType>
+ <sequence>
+ <element ref="searchHandler"/>
+ </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="searchHandler">
+ <complexType>
+ <attribute name="class" type="string" use="required">
+ <annotation>
+ <documentation>
+
+ </documentation>
+ <appInfo>
+ <meta.attribute kind="java" basedOn="org.eclipse.mylyn.internal.tasks.ui.search.AbstractSearchHandler:"/>
+ </appInfo>
+ </annotation>
+ </attribute>
+ </complexType>
+ </element>
+
+ <annotation>
+ <appInfo>
+ <meta.section type="since"/>
+ </appInfo>
+ <documentation>
+ 3.7
+ </documentation>
+ </annotation>
+
+
+
+
+ <annotation>
+ <appInfo>
+ <meta.section type="copyright"/>
+ </appInfo>
+ <documentation>
+ Copyright (c) 2011 Tasktop Technologies.
+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
+http://www.eclipse.org/legal/epl-v10.html
+ </documentation>
+ </annotation>
+
+</schema>

Back to the top