You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by sc...@apache.org on 2018/10/15 21:33:34 UTC

svn commit: r1843955 - in /uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima: analysis_engine/annotator/package.html cas/Feature.java cas/Type.java pear/tools/package.html pear/util/package.html

Author: schor
Date: Mon Oct 15 21:33:34 2018
New Revision: 1843955

URL: http://svn.apache.org/viewvc?rev=1843955&view=rev
Log:
[UIMA-5753] fix javadocs for java 11

Modified:
    uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_engine/annotator/package.html
    uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/cas/Feature.java
    uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/cas/Type.java
    uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/pear/tools/package.html
    uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/pear/util/package.html

Modified: uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_engine/annotator/package.html
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_engine/annotator/package.html?rev=1843955&r1=1843954&r2=1843955&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_engine/annotator/package.html (original)
+++ uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_engine/annotator/package.html Mon Oct 15 21:33:34 2018
@@ -34,7 +34,6 @@ and exception classes.</p>
     <code>TextAnnotator</code>, but uses the Java-object-based {@link org.apache.uima.jcas.JCas}
     interface instead of the standard {@link org.apache.uima.cas.CAS} interface. </li>
 </ul>
-</p>
 
 </body>
 </html>
\ No newline at end of file

Modified: uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/cas/Feature.java
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/cas/Feature.java?rev=1843955&r1=1843954&r2=1843955&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/cas/Feature.java (original)
+++ uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/cas/Feature.java Mon Oct 15 21:33:34 2018
@@ -23,7 +23,7 @@ package org.apache.uima.cas;
  * The interface that describes features in the type system.
  * 
  * <p>
- * <a name="names">Feature short or base names</a> are <a href="./Type.html#identifiers"> type
+ * <a id="names">Feature short or base names</a> are <a href="./Type.html#identifiers"> type
  * system identifiers</a>. The (fully) qualified name of a feature is the <a
  * href="./Type.html#names">name</a> of the type it is defined on, followed by a colon, followed by
  * the its short name. For example, the qualified name of the Annotation begin feature is

Modified: uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/cas/Type.java
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/cas/Type.java?rev=1843955&r1=1843954&r2=1843955&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/cas/Type.java (original)
+++ uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/cas/Type.java Mon Oct 15 21:33:34 2018
@@ -26,14 +26,14 @@ import java.util.Vector;
  * The interface describing types in the type system.
  * 
  * <p>
- * <a name="names">Type names</a> are Java strings that look like Java class names. For example,
+ * <a id="names">Type names</a> are Java strings that look like Java class names. For example,
  * the built-in annotation type is called <code>uima.tcas.Annotation</code>. The whole string is
  * called the (fully) qualified type name. The part after the last period is called the short or
  * base name. The rest of the name is the name space of the type. This part can be empty, in which
  * case the qualified and the base name are identical.
  * 
  * <p>
- * <a name="identifiers">Type system identifiers</a> in general have the following syntax: they are
+ * <a id="identifiers">Type system identifiers</a> in general have the following syntax: they are
  * non-empty strings whose first character is a letter (Unicode letter), followed by an arbitrary
  * sequence of letters, digits and underscores. No other characters are legal parts of identifiers.
  * A type name is then a non-empty sequence of identifiers separated by periods. See also <a

Modified: uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/pear/tools/package.html
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/pear/tools/package.html?rev=1843955&r1=1843954&r2=1843955&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/pear/tools/package.html (original)
+++ uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/pear/tools/package.html Mon Oct 15 21:33:34 2018
@@ -28,7 +28,7 @@ The <CODE>org.apache.uima.pear.tools</CO
 and tools that allow installing PEAR packages containing UIMA-compliant 
 components, verifying serviceability of installed components by using 
 UIMA API and browsing PEAR packages.
-<br />
+<br>
 
 </BODY>
 </HTML>
\ No newline at end of file

Modified: uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/pear/util/package.html
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/pear/util/package.html?rev=1843955&r1=1843954&r2=1843955&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/pear/util/package.html (original)
+++ uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/pear/util/package.html Mon Oct 15 21:33:34 2018
@@ -27,7 +27,7 @@
 The <CODE>org.apache.uima.pear.util</CODE> package provides utilities that 
 facilitate common operations with general files, strings and XML files, 
 as well as simple process message routing and other useful operations.
-<br />
+<br>
 
 </BODY>
 </HTML>
\ No newline at end of file