Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2019-02-16 15:04:20 +0000
committerAlexander Kurtakov2019-02-16 15:04:20 +0000
commit5022557f3c9c7735813111b5c2a0d7ff07f8b12e (patch)
tree93fe1bf6d3ef3d47cae3d42be02c7e4bf5dc5277 /org.eclipse.search
parentbd41efff8beecfdd9c83f1f3a8125177b474be9d (diff)
downloadeclipse.platform.text-5022557f3c9c7735813111b5c2a0d7ff07f8b12e.tar.gz
eclipse.platform.text-5022557f3c9c7735813111b5c2a0d7ff07f8b12e.tar.xz
eclipse.platform.text-5022557f3c9c7735813111b5c2a0d7ff07f8b12e.zip
Fix javadoc warnings catched by Java 11 tool with XDoclint:html. Change-Id: I9d4dfa7c57b47c5d130c8d0c50069b0ed15b70fa Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'org.eclipse.search')
-rw-r--r--org.eclipse.search/new search/org/eclipse/search/ui/IContextMenuConstants.java36
-rw-r--r--org.eclipse.search/new search/org/eclipse/search/ui/text/AbstractTextSearchViewPage.java52
-rw-r--r--org.eclipse.search/new search/org/eclipse/search/ui/text/package.html8
-rw-r--r--org.eclipse.search/search/org/eclipse/search/ui/package.html22
4 files changed, 66 insertions, 52 deletions
diff --git a/org.eclipse.search/new search/org/eclipse/search/ui/IContextMenuConstants.java b/org.eclipse.search/new search/org/eclipse/search/ui/IContextMenuConstants.java
index 6ead79c663b..5099b1efb67 100644
--- a/org.eclipse.search/new search/org/eclipse/search/ui/IContextMenuConstants.java
+++ b/org.eclipse.search/new search/org/eclipse/search/ui/IContextMenuConstants.java
@@ -29,50 +29,54 @@ import org.eclipse.ui.IWorkbenchActionConstants;
public interface IContextMenuConstants {
/**
- * Pop-up menu: name of group for goto actions (value <code>"group.open"</code>).
+ * Pop-up menu: name of group for goto actions (value
+ * <code>"group.open"</code>).
* <p>
* Examples for open actions are:
+ * </p>
* <ul>
- * <li>Go Into</li>
- * <li>Go To</li>
+ * <li>Go Into</li>
+ * <li>Go To</li>
* </ul>
- * </p>
*/
public static final String GROUP_GOTO= "group.goto"; //$NON-NLS-1$
/**
- * Pop-up menu: name of group for open actions (value <code>"group.open"</code>).
+ * Pop-up menu: name of group for open actions (value
+ * <code>"group.open"</code>).
* <p>
* Examples for open actions are:
+ * </p>
* <ul>
- * <li>Open To</li>
- * <li>Open With</li>
+ * <li>Open To</li>
+ * <li>Open With</li>
* </ul>
- * </p>
*/
public static final String GROUP_OPEN= "group.open"; //$NON-NLS-1$
/**
- * Pop-up menu: name of group for show actions (value <code>"group.show"</code>).
+ * Pop-up menu: name of group for show actions (value
+ * <code>"group.show"</code>).
* <p>
* Examples for show actions are:
+ * </p>
* <ul>
- * <li>Show in Navigator</li>
- * <li>Show in Type Hierarchy</li>
+ * <li>Show in Navigator</li>
+ * <li>Show in Type Hierarchy</li>
* </ul>
- * </p>
*/
public static final String GROUP_SHOW= "group.show"; //$NON-NLS-1$
/**
- * Pop-up menu: name of group for new actions (value <code>"group.new"</code>).
+ * Pop-up menu: name of group for new actions (value
+ * <code>"group.new"</code>).
* <p>
* Examples for new actions are:
+ * </p>
* <ul>
- * <li>Create new class</li>
- * <li>Create new interface</li>
+ * <li>Create new class</li>
+ * <li>Create new interface</li>
* </ul>
- * </p>
*/
public static final String GROUP_NEW= "group.new"; //$NON-NLS-1$
diff --git a/org.eclipse.search/new search/org/eclipse/search/ui/text/AbstractTextSearchViewPage.java b/org.eclipse.search/new search/org/eclipse/search/ui/text/AbstractTextSearchViewPage.java
index 45878ad8e0c..01310e7e571 100644
--- a/org.eclipse.search/new search/org/eclipse/search/ui/text/AbstractTextSearchViewPage.java
+++ b/org.eclipse.search/new search/org/eclipse/search/ui/text/AbstractTextSearchViewPage.java
@@ -1417,21 +1417,27 @@ public abstract class AbstractTextSearchViewPage extends Page implements ISearch
}
/**
- * Sets the maximal number of top level elements to be shown in a viewer.
- * If <code>null</code> is set, the view page does not support to limit the elements and will not provide
- * UI to configure it. If a non-null value is set, configuration UI will be provided. The limit value must be a positive
- * number or <code>-1</code> to not limit top level element.
- * If enabled, the element limit has to be enforced by the content provider that is implemented by the client. The view
- * page just manages the value and configuration.
+ * Sets the maximal number of top level elements to be shown in a viewer. If
+ * <code>null</code> is set, the view page does not support to limit the
+ * elements and will not provide UI to configure it. If a non-null value is
+ * set, configuration UI will be provided. The limit value must be a
+ * positive number or <code>-1</code> to not limit top level element. If
+ * enabled, the element limit has to be enforced by the content provider
+ * that is implemented by the client. The view page just manages the value
+ * and configuration.
*
- * @param limit the element limit. Valid values are:
- * <dl>
- * <li><code>null</code> to not limit and not provide configuration UI</li>
- * <li><code>-1</code> to not limit and provide configuration UI</li>
- * <li><code>positive integer</code> to limit by the given value and provide configuration UI</li>
- * </dl>
+ * @param limit
+ * the element limit. Valid values are:
+ * <ul>
+ * <li><code>null</code> to not limit and not provide
+ * configuration UI</li>
+ * <li><code>-1</code> to not limit and provide configuration
+ * UI</li>
+ * <li><code>positive integer</code> to limit by the given value
+ * and provide configuration UI</li>
+ * </ul>
*
- * @since 3.3
+ * @since 3.3
*/
public void setElementLimit(Integer limit) {
fElementLimit= limit;
@@ -1446,18 +1452,22 @@ public abstract class AbstractTextSearchViewPage extends Page implements ISearch
/**
* Gets the maximal number of top level elements to be shown in a viewer.
- * <code>null</code> means the view page does not limit the elements and will not provide
- * UI to configure it. If a non-null value is set, configuration UI will be provided. The limit value must be a positive
+ * <code>null</code> means the view page does not limit the elements and
+ * will not provide UI to configure it. If a non-null value is set,
+ * configuration UI will be provided. The limit value must be a positive
* number or <code>-1</code> to not limit top level element.
*
* @return returns the element limit. Valid values are:
- * <dl>
- * <li><code>null</code> to not limit and not provide configuration UI (default value)</li>
- * <li><code>-1</code> to not limit and provide configuration UI</li>
- * <li><code>positive integer</code> to limit by the given value and provide configuration UI</li>
- * </dl>
+ * <ul>
+ * <li><code>null</code> to not limit and not provide configuration
+ * UI (default value)</li>
+ * <li><code>-1</code> to not limit and provide configuration
+ * UI</li>
+ * <li><code>positive integer</code> to limit by the given value and
+ * provide configuration UI</li>
+ * </ul>
*
- * @since 3.3
+ * @since 3.3
*/
public Integer getElementLimit() {
return fElementLimit;
diff --git a/org.eclipse.search/new search/org/eclipse/search/ui/text/package.html b/org.eclipse.search/new search/org/eclipse/search/ui/text/package.html
index f1bb90d0fa3..687eb1f0019 100644
--- a/org.eclipse.search/new search/org/eclipse/search/ui/text/package.html
+++ b/org.eclipse.search/new search/org/eclipse/search/ui/text/package.html
@@ -8,11 +8,11 @@ Provides the base classes to implement a search result view part for searches wi
<h2>
Package Specification</h2>
-<tt>AbstractTextSearchResult</tt> implements a <tt>ISearchResult</tt> and holds result entries of type <tt>Match</tt>. A match represents a range of text in
+<code>AbstractTextSearchResult</code> implements a <code>ISearchResult</code> and holds result entries of type <code>Match</code>. A match represents a range of text in
a parent resource.
-<p><tt>AbstractTextSearchViewPage</tt> implements a <tt>ISearchResultPage</tt> capable of showing an <tt>AbstractTextSearchResult</tt>.
-It uses <tt>IEditorMatchAdapter</tt>, <tt>IFileMatchAdapter</tt> to adapt matches to editor, resp. files.
-<p> Editors that don't use standard text annotation models can implement <tt>ISearchEditorAccess</tt> to allow textual searches
+<p><code>AbstractTextSearchViewPage</code> implements a <code>ISearchResultPage</code> capable of showing an <code>AbstractTextSearchResult</code>.
+It uses <code>IEditorMatchAdapter</code>, <code>IFileMatchAdapter</code> to adapt matches to editor, resp. files.
+<p> Editors that don't use standard text annotation models can implement <code>ISearchEditorAccess</code> to allow textual searches
to be shown.
</body></html> \ No newline at end of file
diff --git a/org.eclipse.search/search/org/eclipse/search/ui/package.html b/org.eclipse.search/search/org/eclipse/search/ui/package.html
index 3aadf457283..e74f7c772ab 100644
--- a/org.eclipse.search/search/org/eclipse/search/ui/package.html
+++ b/org.eclipse.search/search/org/eclipse/search/ui/package.html
@@ -18,33 +18,33 @@ and search result view pages (extension point 'org.eclipse.search.searchResultVi
<h3>
Search dialog pages</h3>
-<p>Search dialog pages contributing to the 'searchPages' extension point must implement <tt>ISearchPage</tt>. A search page
-has access to its <tt>ISearchPageContainer</tt> to modify search
+<p>Search dialog pages contributing to the 'searchPages' extension point must implement <code>ISearchPage</code>. A search page
+has access to its <code>ISearchPageContainer</code> to modify search
dialog properties.
-<p>A search dialog page can additionally implement <tt>IReplacePage</tt> to allow the 'Replace' button to show up.
+<p>A search dialog page can additionally implement <code>IReplacePage</code> to allow the 'Replace' button to show up.
<h3>
Search result view, since 3.0</h3>
<p>The search view that shows the search results has been redesigned for 3.0. It is recommended
to use and to switch to the new API:
-<p>On 'OK', an implementation of a search dialog page creates a <i>search query</i>, represented by an instances of type <tt>ISearchQuery</tt>. The query
-can be run using API on <tt>NewSearchUI</tt> and will create a <code>ISearchResult</code> as result.
-<tt>ISearchResultListener</tt> can be added to search results and report changes as <tt>SearchResultEvent</tt>.
+<p>On 'OK', an implementation of a search dialog page creates a <i>search query</i>, represented by an instances of type <code>ISearchQuery</code>. The query
+can be run using API on <code>NewSearchUI</code> and will create a <code>ISearchResult</code> as result.
+<code>ISearchResultListener</code> can be added to search results and report changes as <code>SearchResultEvent</code>.
-<p>Clients have to contribute a search result page (<tt>ISearchResultPage</tt>) that can
+<p>Clients have to contribute a search result page (<code>ISearchResultPage</code>) that can
visualize the matches contained in the result set.
-<p>The result page has access to the view using <tt>ISearchResultViewPart</tt>
+<p>The result page has access to the view using <code>ISearchResultViewPart</code>
<h3>
Search result view, before 3.0</h3>
<p>For compatibility to searches written prior to 3.0, the following APIs still exist and are functional. The old search result view is called 'classic search view' in the UI.
-<p>Before 3.0, the search result view was fully implemented by the search plugin. All search results had to be marked with <i>search markers</i> (<tt>org.eclipse.core.resources.IMarker</tt>, registered under 'org.eclipse.search.searchmarker')
+<p>Before 3.0, the search result view was fully implemented by the search plugin. All search results had to be marked with <i>search markers</i> (<code>org.eclipse.core.resources.IMarker</code>, registered under 'org.eclipse.search.searchmarker')
-<p>The search dialog page (type <tt>ISearchResultView</tt>) could access the single search result view using <tt>SearchUI.getSearchResultView()</tt>. It showed all matches as elements of type <tt>ISearchResultViewEntry</tt>.
+<p>The search dialog page (type <code>ISearchResultView</code>) could access the single search result view using <code>SearchUI.getSearchResultView()</code>. It showed all matches as elements of type <code>ISearchResultViewEntry</code>.
-<p><tt>IGroupByKeyComputer</tt>, <tt>IActionGroupFactory</tt>, <tt>IContextMenuContributor</tt> and extension point
+<p><code>IGroupByKeyComputer</code>, <code>IActionGroupFactory</code>, <code>IContextMenuContributor</code> and extension point
'org.eclipse.search.searchResultSorters' were used to configure the search result view.

Back to the top