blob: 8959ebe79ba78db1835c322fe8065b9e4f196056 [file] [log] [blame]
<?xml version='1.0' encoding='UTF-8'?>
<!-- Schema file written by PDE -->
<schema targetNamespace="org.eclipse.search">
<annotation>
<appInfo>
<meta.schema plugin="org.eclipse.search" id="searchResultSorters" name="Result Sorters"/>
</appInfo>
<documentation>
This extension point allows a plug-in to contribute
search result sorters to the search result view&apos;s Sort
context menu.
</documentation>
</annotation>
<element name="extension">
<complexType>
<sequence>
<element ref="sorter" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
<attribute name="point" type="string" use="required">
<annotation>
<documentation>
a fully qualified identifier of the target extension point
</documentation>
</annotation>
</attribute>
<attribute name="id" type="string">
<annotation>
<documentation>
an optional identifier of the extension instance
</documentation>
</annotation>
</attribute>
<attribute name="name" type="string">
<annotation>
<documentation>
an optional name of the extension instance
</documentation>
</annotation>
</attribute>
</complexType>
</element>
<element name="sorter">
<annotation>
<appInfo>
<meta.element labelAttribute="label" icon="icon"/>
</appInfo>
</annotation>
<complexType>
<attribute name="id" type="string" use="required">
<annotation>
<documentation>
a unique name that will be used to identify this search result sorter.
</documentation>
</annotation>
</attribute>
<attribute name="pageId" type="string" use="required">
<annotation>
<documentation>
the ID of a registered search page for which the
sorter will be activated. &quot;*&quot; activates the sorter
for all pages.
</documentation>
</annotation>
</attribute>
<attribute name="label" type="string" use="required">
<annotation>
<documentation>
a translatable label that will be used as the
menu item&apos;s label.
</documentation>
</annotation>
</attribute>
<attribute name="tooltip" type="string">
<annotation>
<documentation>
a translatable text that will be used as the menu
item&apos;s tool tip . If omitted, the menu item will
have no tool tip.
</documentation>
</annotation>
</attribute>
<attribute name="icon" type="string">
<annotation>
<documentation>
a relative name of the image that will be shown in
the context menu along with the label. If omitted,
the menu entry will only contain a label.
</documentation>
<appInfo>
<meta.attribute kind="resource"/>
</appInfo>
</annotation>
</attribute>
<attribute name="class" type="string" use="required">
<annotation>
<documentation>
a name of the class that extends &lt;samp&gt;org.eclipse.jface.viewers.ViewerSorter&lt;/samp&gt;
</documentation>
<appInfo>
<meta.attribute kind="java" basedOn="org.eclipse.jface.viewers.ViewerSorter"/>
</appInfo>
</annotation>
</attribute>
</complexType>
</element>
<annotation>
<appInfo>
<meta.section type="examples"/>
</appInfo>
<documentation>
The following is an example of a search page extension definition:
&lt;p&gt;
&lt;pre&gt;
&lt;extension point=&quot;org.eclipse.search.searchResultSorters&quot;&gt;
&lt;sorter
id=&quot;org.eclipse.search.internal.ui.FileNameSorter&quot;
pageId=&quot;*&quot;
label=&quot;%FileNameSorter.label&quot;
tooltip=&quot;%FilenNameSorter.tooltip&quot;
icon=&quot;icons/full/ecl16/search_sort.gif&quot;
class=&quot;org.eclipse.search.internal.ui.FileNameSorter&quot;&gt;
&lt;/sorter&gt;
&lt;/extension&gt;
&lt;/pre&gt;
&lt;/p&gt;
</documentation>
</annotation>
<annotation>
<appInfo>
<meta.section type="apiInfo"/>
</appInfo>
<documentation>
</documentation>
</annotation>
<annotation>
<appInfo>
<meta.section type="implementation"/>
</appInfo>
<documentation>
The search infrastructure provides a sorter that sorts
the matches by the resource name.
</documentation>
</annotation>
<annotation>
<appInfo>
<meta.section type="copyright"/>
</appInfo>
<documentation>
&lt;p&gt;
&lt;a href=&quot;hglegal.htm&quot;&gt;
&lt;img SRC=&quot;ngibmcpy.gif&quot;
ALT=&quot;Copyright (c) 2000, 2003 IBM Corporation and others. All Rights Reserved.&quot;
BORDER=0 height=14 width=324&gt;&lt;/a&gt;
&lt;/p&gt;
</documentation>
</annotation>
</schema>