schema.searchResultViewPages.exsd Maven / Gradle / Ivy
The newest version!
This extension point allows clients to plug pages into the search result view.
a fully qualified identifier of the target extension point
an optional identifier of the extension instance
The fully qualified class name of the <code>ISearchResult</code> implementation this search result page supposed to show.
the fully qualified class name implementing this search result page. The class must implement <code>org.eclipse.search.ui.ISearchResultPage</code>.
the id, typically the same as the fully qualified class name
a translatable label that can be used in the search result page to list all available search result views. It is currently not used but might be in the future.
an icon that can be used in the search result page in a list of all available search result views. It is currently not used but might be in the future.
The help context for the page. Added in 3.4.
3.0
As an example, here is the markup for the file search result page.
<p>
<pre>
<extension
id="FileSearchPage"
point="org.eclipse.search.searchResultViewPages">
<viewPage
id="org.eclipse.search.text.FileSearchResultPage"
searchResultClass="org.eclipse.search.internal.ui.text.FileSearchResult"
class="org.eclipse.search.internal.ui.text.FileSearchPage">
</viewPage>
</extension>
</pre>
</p>
The contributed class must implement <code>org.eclipse.search.ui.ISearchResultPage</code>
The search plugin provide a search result page for file searches.
Copyright (c) 2001, 2004 IBM Corporation and others.<br>
This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which accompanies this distribution, and is available at <a href="https://www.eclipse.org/legal/epl-2.0">https://www.eclipse.org/legal/epl-v20.html</a>/
SPDX-License-Identifier: EPL-2.0