Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2019-02-15 13:25:00 +0000
committerAlexander Kurtakov2019-02-15 13:25:00 +0000
commit5a188447f9f5c3d266de68fbb232a468cf9590e4 (patch)
treee92c7d9804eea083495c23c90111caf070bce015 /org.eclipse.ui.editors/src
parent2936a95c7b1920862b7355b138dc9cf4cfa5725a (diff)
downloadeclipse.platform.text-5a188447f9f5c3d266de68fbb232a468cf9590e4.tar.gz
eclipse.platform.text-5a188447f9f5c3d266de68fbb232a468cf9590e4.tar.xz
eclipse.platform.text-5a188447f9f5c3d266de68fbb232a468cf9590e4.zip
Bug 543933 - Build javadocs with Java 11
Fix warnings catched by java 11 javadoc. (take 4) Change-Id: I64da26cfb07bb1f02e18f87954b24ce93546316e Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'org.eclipse.ui.editors/src')
-rw-r--r--org.eclipse.ui.editors/src/org/eclipse/ui/editors/text/ILocationProvider.java15
-rw-r--r--org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/AbstractMarkerAnnotationModel.java26
-rw-r--r--org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/AddMarkerAction.java23
-rw-r--r--org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/ChangeEncodingAction.java11
4 files changed, 38 insertions, 37 deletions
diff --git a/org.eclipse.ui.editors/src/org/eclipse/ui/editors/text/ILocationProvider.java b/org.eclipse.ui.editors/src/org/eclipse/ui/editors/text/ILocationProvider.java
index 1b54be5e787..07f475f8668 100644
--- a/org.eclipse.ui.editors/src/org/eclipse/ui/editors/text/ILocationProvider.java
+++ b/org.eclipse.ui.editors/src/org/eclipse/ui/editors/text/ILocationProvider.java
@@ -17,17 +17,16 @@ import org.eclipse.core.runtime.IPath;
/**
- * This class gets the location for a given
- * object.
+ * This class gets the location for a given object.
* <p>
- * In order to provided backward compatibility for clients of
- * <code>ILocationProvider</code>, extension interfaces are used to provide a means
- * of evolution. The following extension interfaces exist:
+ * In order to provided backward compatibility for clients of <code>ILocationProvider</code>,
+ * extension interfaces are used to provide a means of evolution. The following extension interfaces
+ * exist:
+ * </p>
* <ul>
- * <li>{@link org.eclipse.ui.editors.text.ILocationProviderExtension} since version 3.3
- * allowing to get the location as <code>URI</code>.</li>
+ * <li>{@link org.eclipse.ui.editors.text.ILocationProviderExtension} since version 3.3 allowing to
+ * get the location as <code>URI</code>.</li>
* </ul>
- * </p>
*
* @see org.eclipse.ui.editors.text.ILocationProviderExtension
* @since 3.0
diff --git a/org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/AbstractMarkerAnnotationModel.java b/org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/AbstractMarkerAnnotationModel.java
index ca4abb5fa3f..a2261760bb0 100644
--- a/org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/AbstractMarkerAnnotationModel.java
+++ b/org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/AbstractMarkerAnnotationModel.java
@@ -51,25 +51,25 @@ import org.eclipse.ui.editors.text.EditorsUI;
/**
- * Abstract implementation of a marker-based annotation model.
+ * Abstract implementation of a marker-based annotation model.
* <p>
- * Markers are provided by an underlying source (a subclass responsibility).
- * Markers whose textual range gets deleted during text editing are removed
- * from the model on save. The {@link #updateMarkers(IDocument)} method can be used
- * to force the model to update the source's markers with any changes to their
- * locations due to edits. Clients can register a {@link org.eclipse.ui.texteditor.IMarkerUpdater}
- * objects in order to define the process of marker updating. Registration can be done
- * using the <code>"org.eclipse.ui.markerUpdaters"</code> extension point.
+ * Markers are provided by an underlying source (a subclass responsibility). Markers whose textual
+ * range gets deleted during text editing are removed from the model on save. The
+ * {@link #updateMarkers(IDocument)} method can be used to force the model to update the source's
+ * markers with any changes to their locations due to edits. Clients can register a
+ * {@link org.eclipse.ui.texteditor.IMarkerUpdater} objects in order to define the process of marker
+ * updating. Registration can be done using the <code>"org.eclipse.ui.markerUpdaters"</code>
+ * extension point.
* </p>
* <p>
* Subclasses must implement the following methods:
+ * </p>
* <ul>
- * <li><code>retrieveMarkers</code></li>
- * <li><code>isAcceptable</code></li>
- * <li><code>deleteMarkers</code></li>
- * <li><code>listenToMarkerChanges</code></li>
+ * <li><code>retrieveMarkers</code></li>
+ * <li><code>isAcceptable</code></li>
+ * <li><code>deleteMarkers</code></li>
+ * <li><code>listenToMarkerChanges</code></li>
* </ul>
- * </p>
*/
public abstract class AbstractMarkerAnnotationModel extends AnnotationModel implements IPersistableAnnotationModel {
diff --git a/org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/AddMarkerAction.java b/org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/AddMarkerAction.java
index 4d981dd07e6..988415a4d41 100644
--- a/org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/AddMarkerAction.java
+++ b/org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/AddMarkerAction.java
@@ -47,20 +47,21 @@ import org.eclipse.ui.ide.undo.CreateMarkersOperation;
/**
- * Action for creating a marker of a specified type for the editor's
- * input element based on the editor's selection. If required, the
- * action asks the user to provide a marker label. The action is initially
- * associated with a text editor via the constructor, but that can be
- * subsequently changed using <code>setEditor</code>.
+ * Action for creating a marker of a specified type for the editor's input element based on the
+ * editor's selection. If required, the action asks the user to provide a marker label. The action
+ * is initially associated with a text editor via the constructor, but that can be subsequently
+ * changed using <code>setEditor</code>.
* <p>
- * The following keys, prepended by the given option prefix,
- * are used for retrieving resources from the given bundle:
+ * The following keys, prepended by the given option prefix, are used for retrieving resources from
+ * the given bundle:
+ * </p>
* <ul>
- * <li><code>"dialog.title"</code> - the input dialog's title</li>
- * <li><code>"dialog.message"</code> - the input dialog's message</li>
- * <li><code>"error.dialog.title"</code> - the error dialog's title</li>
- * <li><code>"error.dialog.message"</code> - the error dialog's message</li>
+ * <li><code>"dialog.title"</code> - the input dialog's title</li>
+ * <li><code>"dialog.message"</code> - the input dialog's message</li>
+ * <li><code>"error.dialog.title"</code> - the error dialog's title</li>
+ * <li><code>"error.dialog.message"</code> - the error dialog's message</li>
* </ul>
+ * <p>
* This class may be instantiated but is not intended to be subclassed.
* </p>
*
diff --git a/org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/ChangeEncodingAction.java b/org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/ChangeEncodingAction.java
index 18822ab46d9..1d467fd985a 100644
--- a/org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/ChangeEncodingAction.java
+++ b/org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/ChangeEncodingAction.java
@@ -40,14 +40,15 @@ import org.eclipse.ui.ide.dialogs.ResourceEncodingFieldEditor;
import org.eclipse.ui.editors.text.IEncodingSupport;
/**
- * Action for changing the encoding of the editor's
- * input element.
+ * Action for changing the encoding of the editor's input element.
* <p>
- * The following keys, prepended by the given option prefix,
- * are used for retrieving resources from the given bundle:
+ * The following keys, prepended by the given option prefix, are used for retrieving resources from
+ * the given bundle:
+ * </p>
* <ul>
- * <li><code>"dialog.title"</code> - the input dialog's title</li>
+ * <li><code>"dialog.title"</code> - the input dialog's title</li>
* </ul>
+ * <p>
* This class may be instantiated but is not intended to be subclassed.
* </p>
*

Back to the top