Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2019-02-14 21:09:58 +0000
committerAlexander Kurtakov2019-02-14 21:57:20 +0000
commit2936a95c7b1920862b7355b138dc9cf4cfa5725a (patch)
treeb4ac04beca2915afe7bde41faff53febcf78fae1 /org.eclipse.text
parentc40e4685598064f2be87b659f2c60e094d63ca07 (diff)
downloadeclipse.platform.text-2936a95c7b1920862b7355b138dc9cf4cfa5725a.tar.gz
eclipse.platform.text-2936a95c7b1920862b7355b138dc9cf4cfa5725a.tar.xz
eclipse.platform.text-2936a95c7b1920862b7355b138dc9cf4cfa5725a.zip
Bug 543933 - Build javadocs with Java 11I20190215-0630I20190215-0055I20190214-1800
Fix warnings catched by java 11 javadoc. (take 3) Change-Id: I6e7fd7d2f60b67dfdfe31e89d80c871cfd6c443f Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'org.eclipse.text')
-rw-r--r--org.eclipse.text/src/org/eclipse/jface/text/DocumentRewriteSessionType.java2
-rw-r--r--org.eclipse.text/src/org/eclipse/jface/text/IDocument.java8
-rw-r--r--org.eclipse.text/src/org/eclipse/jface/text/IDocumentPartitioningListener.java2
-rw-r--r--org.eclipse.text/src/org/eclipse/jface/text/ISlaveDocumentManager.java2
-rw-r--r--org.eclipse.text/src/org/eclipse/jface/text/source/IAnnotationModel.java2
-rw-r--r--org.eclipse.text/src/org/eclipse/jface/text/templates/package.html2
6 files changed, 8 insertions, 10 deletions
diff --git a/org.eclipse.text/src/org/eclipse/jface/text/DocumentRewriteSessionType.java b/org.eclipse.text/src/org/eclipse/jface/text/DocumentRewriteSessionType.java
index 4daffa770bf..92383400dd2 100644
--- a/org.eclipse.text/src/org/eclipse/jface/text/DocumentRewriteSessionType.java
+++ b/org.eclipse.text/src/org/eclipse/jface/text/DocumentRewriteSessionType.java
@@ -18,13 +18,13 @@ package org.eclipse.jface.text;
* A document rewrite session type.
* <p>
* Allowed values are:
+ * </p>
* <ul>
* <li>{@link DocumentRewriteSessionType#UNRESTRICTED}</li>
* <li>{@link DocumentRewriteSessionType#UNRESTRICTED_SMALL} (since 3.3)</li>
* <li>{@link DocumentRewriteSessionType#SEQUENTIAL}</li>
* <li>{@link DocumentRewriteSessionType#STRICTLY_SEQUENTIAL}</li>
* </ul>
- * </p>
*
* @see org.eclipse.jface.text.IDocument
* @see org.eclipse.jface.text.IDocumentExtension4
diff --git a/org.eclipse.text/src/org/eclipse/jface/text/IDocument.java b/org.eclipse.text/src/org/eclipse/jface/text/IDocument.java
index d161a749231..fba0c365acd 100644
--- a/org.eclipse.text/src/org/eclipse/jface/text/IDocument.java
+++ b/org.eclipse.text/src/org/eclipse/jface/text/IDocument.java
@@ -65,19 +65,19 @@ package org.eclipse.jface.text;
* <p>
* <code>IDocument</code> throws <code>BadLocationException</code> if the parameters of
* queries or manipulation requests are not inside the bounds of the document. The purpose
- * of this style of exception handling is
+ * of this style of exception handling is</p>
* <ul>
* <li> prepare document for multi-thread access
* <li> allow clients to implement backtracking recovery methods
* <li> prevent clients from up-front contract checking when dealing with documents.
- * </ul></p>
+ * </ul>
* <p>
* A document support for searching has deprecated since version 3.0. The recommended way
* for searching is to use a {@link org.eclipse.jface.text.FindReplaceDocumentAdapter}.</p>
* <p>
* In order to provide backward compatibility for clients of <code>IDocument</code>, extension
* interfaces are used to provide a means of evolution. The following extension interfaces
- * exist:
+ * exist:</p>
* <ul>
* <li> {@link org.eclipse.jface.text.IDocumentExtension} since version 2.0 introducing the concept
* of post notification replaces in order to allow document listeners to manipulate the document
@@ -91,7 +91,7 @@ package org.eclipse.jface.text;
* concept of rewrite sessions. A rewrite session is a sequence of document replace operations
* that form a semantic unit. It also introduces a modification stamp and the ability to
* set the initial line delimiter and to query the default line delimiter.</li>
- * </ul></p>
+ * </ul>
* <p>
* Clients may implement this interface and its extension interfaces or use the default
* implementation provided by <code>AbstractDocument</code> and <code>Document</code>.</p>
diff --git a/org.eclipse.text/src/org/eclipse/jface/text/IDocumentPartitioningListener.java b/org.eclipse.text/src/org/eclipse/jface/text/IDocumentPartitioningListener.java
index fefed90957b..792a795d26c 100644
--- a/org.eclipse.text/src/org/eclipse/jface/text/IDocumentPartitioningListener.java
+++ b/org.eclipse.text/src/org/eclipse/jface/text/IDocumentPartitioningListener.java
@@ -25,6 +25,7 @@ package org.eclipse.jface.text;
* In order to provided backward compatibility for clients of <code>IDocumentPartitioningListener</code>, extension
* interfaces are used to provide a means of evolution. The following extension interfaces
* exist:
+ * </p>
* <ul>
* <li> {@link org.eclipse.jface.text.IDocumentPartitioningListenerExtension} since version 2.0 replacing the original
* notification mechanism.</li>
@@ -32,7 +33,6 @@ package org.eclipse.jface.text;
* notification mechanisms. Thus, implementers up-to-date with version 3.0 do not have to implement
* {@link org.eclipse.jface.text.IDocumentPartitioningListenerExtension}.</li>
* </ul>
- * </p>
* @see org.eclipse.jface.text.IDocumentPartitioningListenerExtension
* @see org.eclipse.jface.text.IDocumentPartitioningListenerExtension2
* @see org.eclipse.jface.text.IDocument
diff --git a/org.eclipse.text/src/org/eclipse/jface/text/ISlaveDocumentManager.java b/org.eclipse.text/src/org/eclipse/jface/text/ISlaveDocumentManager.java
index 910853c2cdf..784b67cc6c6 100644
--- a/org.eclipse.text/src/org/eclipse/jface/text/ISlaveDocumentManager.java
+++ b/org.eclipse.text/src/org/eclipse/jface/text/ISlaveDocumentManager.java
@@ -28,11 +28,11 @@ package org.eclipse.jface.text;
* In order to provided backward compatibility for clients of <code>ISlaveDocumentManager</code>, extension
* interfaces are used to provide a means of evolution. The following extension interfaces
* exist:
+ * </p>
* <ul>
* <li> {@link org.eclipse.jface.text.ISlaveDocumentManagerExtension} since version 3.0 extending the protocol
* with an access to all managed slave document for a given master document. </li>
* </ul>
- * </p>
*
* @see org.eclipse.jface.text.IDocument
* @since 2.1
diff --git a/org.eclipse.text/src/org/eclipse/jface/text/source/IAnnotationModel.java b/org.eclipse.text/src/org/eclipse/jface/text/source/IAnnotationModel.java
index 9cc3cd69720..058d6822489 100644
--- a/org.eclipse.text/src/org/eclipse/jface/text/source/IAnnotationModel.java
+++ b/org.eclipse.text/src/org/eclipse/jface/text/source/IAnnotationModel.java
@@ -29,6 +29,7 @@ import org.eclipse.jface.text.Position;
* In order to provide backward compatibility for clients of <code>IAnnotationModel</code>, extension
* interfaces are used to provide a means of evolution. The following extension interfaces
* exist:
+ * </p>
* <ul>
* <li> {@link org.eclipse.jface.text.source.IAnnotationModelExtension} since version 3.0 introducing the concept
* of model piggybacking annotation models, modification time stamps, and enhanced manipulation methods.
@@ -37,7 +38,6 @@ import org.eclipse.jface.text.Position;
* annotations within a given region.
* </li>
* </ul>
- * </p>
*
* Clients may implement this interface or use the default implementation provided
* by <code>AnnotationModel</code>.
diff --git a/org.eclipse.text/src/org/eclipse/jface/text/templates/package.html b/org.eclipse.text/src/org/eclipse/jface/text/templates/package.html
index 34ffca9d1ee..00fe64dc3dc 100644
--- a/org.eclipse.text/src/org/eclipse/jface/text/templates/package.html
+++ b/org.eclipse.text/src/org/eclipse/jface/text/templates/package.html
@@ -76,8 +76,6 @@ extension point.</li>
<li><tt>TemplatePreferencePage</tt> allows
the user to access the templates within a <tt>TemplateStore.</tt></li>
</ul>
-<ul>
-</ul>
<h4>Example</h4>
See the Template Editor Example in the <strong>org.eclipse.ui.examples.javaeditor</strong> project.<br>
</body>

Back to the top