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.ui.workbench.texteditor
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.ui.workbench.texteditor')
-rw-r--r--org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/AbstractTextEditor.java44
1 files changed, 23 insertions, 21 deletions
diff --git a/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/AbstractTextEditor.java b/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/AbstractTextEditor.java
index ce86a6c82ef..728c83c2789 100644
--- a/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/AbstractTextEditor.java
+++ b/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/AbstractTextEditor.java
@@ -2032,7 +2032,9 @@ public abstract class AbstractTextEditor extends EditorPart implements ITextEdit
* </p>
*
* <p>
- * The following preferences can be used for fine-grained configuration when enabled.
+ * The following preferences can be used for fine-grained configuration when
+ * enabled.
+ * </p>
* <ul>
* <li>{@link #PREFERENCE_SHOW_LEADING_SPACES}</li>
* <li>{@link #PREFERENCE_SHOW_ENCLOSED_SPACES}</li>
@@ -2047,7 +2049,6 @@ public abstract class AbstractTextEditor extends EditorPart implements ITextEdit
* <li>{@link #PREFERENCE_SHOW_LINE_FEED}</li>
* <li>{@link #PREFERENCE_WHITESPACE_CHARACTER_ALPHA_VALUE}</li>
* </ul>
- * </p>
*
* @since 3.3
*/
@@ -3276,18 +3277,19 @@ public abstract class AbstractTextEditor extends EditorPart implements ITextEdit
/**
* The <code>AbstractTextEditor</code> implementation of this
- * <code>IWorkbenchPart</code> method creates the vertical ruler and
- * source viewer.
+ * <code>IWorkbenchPart</code> method creates the vertical ruler and source
+ * viewer.
* <p>
* Subclasses may extend this method. Besides extending this method, the
- * behavior of <code>createPartControl</code> may be customized by
- * calling, extending or replacing the following methods: <br>
+ * behavior of <code>createPartControl</code> may be customized by calling,
+ * extending or replacing the following methods: <br>
* Subclasses may supply customized implementations for some members using
* the following methods before <code>createPartControl</code> is invoked:
+ * </p>
* <ul>
- * <li>
- * {@linkplain #setSourceViewerConfiguration(SourceViewerConfiguration) setSourceViewerConfiguration}
- * to supply a custom source viewer configuration,</li>
+ * <li>{@linkplain #setSourceViewerConfiguration(SourceViewerConfiguration)
+ * setSourceViewerConfiguration} to supply a custom source viewer
+ * configuration,</li>
* <li>{@linkplain #setRangeIndicator(Annotation) setRangeIndicator} to
* provide a range indicator,</li>
* <li>{@linkplain #setHelpContextId(String) setHelpContextId} to provide a
@@ -3303,29 +3305,29 @@ public abstract class AbstractTextEditor extends EditorPart implements ITextEdit
* <ul>
* <li>{@linkplain #createVerticalRuler() createVerticalRuler} to supply a
* custom vertical ruler,</li>
- * <li>{@linkplain #createSourceViewer(Composite, IVerticalRuler, int) createSourceViewer}
- * to supply a custom source viewer,</li>
- * <li>{@linkplain #getSelectionProvider() getSelectionProvider} to supply
- * a custom selection provider.</li>
+ * <li>{@linkplain #createSourceViewer(Composite, IVerticalRuler, int)
+ * createSourceViewer} to supply a custom source viewer,</li>
+ * <li>{@linkplain #getSelectionProvider() getSelectionProvider} to supply a
+ * custom selection provider.</li>
* </ul>
* <br>
* Subclasses may extend the following methods called from within
* <code>createPartControl</code>:
* <ul>
- * <li>
- * {@linkplain #initializeViewerColors(ISourceViewer) initializeViewerColors}
- * to customize the viewer color scheme (may also be replaced),</li>
- * <li>
- * {@linkplain #initializeDragAndDrop(ISourceViewer) initializeDragAndDrop}
- * to customize drag and drop (may also be replaced),</li>
+ * <li>{@linkplain #initializeViewerColors(ISourceViewer)
+ * initializeViewerColors} to customize the viewer color scheme (may also be
+ * replaced),</li>
+ * <li>{@linkplain #initializeDragAndDrop(ISourceViewer)
+ * initializeDragAndDrop} to customize drag and drop (may also be
+ * replaced),</li>
* <li>{@linkplain #createNavigationActions() createNavigationActions} to
* add navigation actions,</li>
* <li>{@linkplain #createActions() createActions} to add text editor
* actions.</li>
* </ul>
- * </p>
*
- * @param parent the parent composite
+ * @param parent
+ * the parent composite
*/
@Override
public void createPartControl(Composite parent) {

Back to the top