Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2008-09-05 09:47:54 +0000
committerDani Megert2008-09-05 09:47:54 +0000
commita7cc573f2f4f3dfc639d64ae7f0865172ca96576 (patch)
treebf85fa0c827bdef0eebaf932625365fae1ced53a /org.eclipse.search/new search/org/eclipse/search
parent317660e326d1ba92731e2f4d7d1b1b18a9dcb8af (diff)
downloadeclipse.platform.text-a7cc573f2f4f3dfc639d64ae7f0865172ca96576.tar.gz
eclipse.platform.text-a7cc573f2f4f3dfc639d64ae7f0865172ca96576.tar.xz
eclipse.platform.text-a7cc573f2f4f3dfc639d64ae7f0865172ca96576.zip
Fixed Javadoc warnings.
Diffstat (limited to 'org.eclipse.search/new search/org/eclipse/search')
-rw-r--r--org.eclipse.search/new search/org/eclipse/search/ui/ISearchResultPage.java15
-rw-r--r--org.eclipse.search/new search/org/eclipse/search/ui/ISearchResultViewPart.java7
2 files changed, 10 insertions, 12 deletions
diff --git a/org.eclipse.search/new search/org/eclipse/search/ui/ISearchResultPage.java b/org.eclipse.search/new search/org/eclipse/search/ui/ISearchResultPage.java
index 70a08be9df3..7bf76009ee0 100644
--- a/org.eclipse.search/new search/org/eclipse/search/ui/ISearchResultPage.java
+++ b/org.eclipse.search/new search/org/eclipse/search/ui/ISearchResultPage.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2006 IBM Corporation and others.
+ * Copyright (c) 2000, 2008 IBM Corporation and others.
* 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
@@ -43,13 +43,12 @@ public interface ISearchResultPage extends IPageBookViewPage {
* @see ISearchResultPage#getUIState()
*/
void setInput(ISearchResult search, Object uiState);
+
/**
- * Sets the search view this search results page is shown in. This method
- * will be called before the page is shown for the first time (i.e. before
- * the page control is created).
+ * Sets the search view this search results page is shown in. This method will be called before
+ * the page is shown for the first time (i.e. before the page control is created).
*
- * @param part
- * the parent search view
+ * @param part the parent search view
*/
void setViewPart(ISearchResultViewPart part);
/**
@@ -64,7 +63,7 @@ public interface ISearchResultPage extends IPageBookViewPage {
void restoreState(IMemento memento);
/**
* Saves the page state in a memento. Note that this applies to state that
- * should persist across sessions.
+ * should persist across sessions.
*
* @param memento a memento to receive the object state
*
@@ -88,7 +87,7 @@ public interface ISearchResultPage extends IPageBookViewPage {
/**
* Returns a user readable label for this search result page. The label will be
* used to describe the contents for the page to the user (for example it will be
- * displayed in the search view title bar). To take an example from file search,
+ * displayed in the search view title bar). To take an example from file search,
* a label might read like this: 'test' - 896 matches in workspace.
*
* @return the user readable label for this search result page
diff --git a/org.eclipse.search/new search/org/eclipse/search/ui/ISearchResultViewPart.java b/org.eclipse.search/new search/org/eclipse/search/ui/ISearchResultViewPart.java
index 9ebca9843e1..e435c88bccb 100644
--- a/org.eclipse.search/new search/org/eclipse/search/ui/ISearchResultViewPart.java
+++ b/org.eclipse.search/new search/org/eclipse/search/ui/ISearchResultViewPart.java
@@ -32,11 +32,10 @@ import org.eclipse.ui.IViewPart;
*/
public interface ISearchResultViewPart extends IViewPart {
/**
- * Search result pages should call this method to have the search results
- * view contribute to their context menus.
+ * Search result pages should call this method to have the search results view contribute to
+ * their context menus.
*
- * @param menuManager
- * the menu manager the search result view should contribute to
+ * @param menuManager the menu manager the search result view should contribute to
*/
void fillContextMenu(IMenuManager menuManager);
/**

Back to the top