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 2017/09/01 15:01:18 UTC

svn commit: r1806971 - in /uima/uv3/uimaj-v3/trunk/uimaj-core/src/main/java/org/apache/uima: cas/FSIndexRepository.java cas/impl/SelectFSs_impl.java jcas/JCas.java

Author: schor
Date: Fri Sep  1 15:01:18 2017
New Revision: 1806971

URL: http://svn.apache.org/viewvc?rev=1806971&view=rev
Log:
no jira- fix javadocs missing <T> and some occurrances of > chars

Modified:
    uima/uv3/uimaj-v3/trunk/uimaj-core/src/main/java/org/apache/uima/cas/FSIndexRepository.java
    uima/uv3/uimaj-v3/trunk/uimaj-core/src/main/java/org/apache/uima/cas/impl/SelectFSs_impl.java
    uima/uv3/uimaj-v3/trunk/uimaj-core/src/main/java/org/apache/uima/jcas/JCas.java

Modified: uima/uv3/uimaj-v3/trunk/uimaj-core/src/main/java/org/apache/uima/cas/FSIndexRepository.java
URL: http://svn.apache.org/viewvc/uima/uv3/uimaj-v3/trunk/uimaj-core/src/main/java/org/apache/uima/cas/FSIndexRepository.java?rev=1806971&r1=1806970&r2=1806971&view=diff
==============================================================================
--- uima/uv3/uimaj-v3/trunk/uimaj-core/src/main/java/org/apache/uima/cas/FSIndexRepository.java (original)
+++ uima/uv3/uimaj-v3/trunk/uimaj-core/src/main/java/org/apache/uima/cas/FSIndexRepository.java Fri Sep  1 15:01:18 2017
@@ -127,6 +127,7 @@ public interface FSIndexRepository {
   /**
    * Remove all instances of type, including all subtypes from all indexes in the repository view.
    * @param clazz the JCas class of the type to remove.  To remove all use TOP.class
+   * @param <T> the type to remove
    * @exception NullPointerException if the <code>clazz</code> parameter is <code>null</code>.
   */
   default <T extends TOP> void removeAllIncludingSubtypes(Class<T> clazz) {
@@ -143,6 +144,7 @@ public interface FSIndexRepository {
   /**
    * Remove all instances of just this type, excluding subtypes, from all indexes in the repository view.
    * @param clazz the JCas Class of the type to remove
+   * @param <T> the type to remove
    * @exception NullPointerException if the <code>type</code> parameter is <code>null</code>.
   */
   default <T extends TOP> void removeAllExcludingSubtypes(Class<T> clazz) {

Modified: uima/uv3/uimaj-v3/trunk/uimaj-core/src/main/java/org/apache/uima/cas/impl/SelectFSs_impl.java
URL: http://svn.apache.org/viewvc/uima/uv3/uimaj-v3/trunk/uimaj-core/src/main/java/org/apache/uima/cas/impl/SelectFSs_impl.java?rev=1806971&r1=1806970&r2=1806971&view=diff
==============================================================================
--- uima/uv3/uimaj-v3/trunk/uimaj-core/src/main/java/org/apache/uima/cas/impl/SelectFSs_impl.java (original)
+++ uima/uv3/uimaj-v3/trunk/uimaj-core/src/main/java/org/apache/uima/cas/impl/SelectFSs_impl.java Fri Sep  1 15:01:18 2017
@@ -81,8 +81,8 @@ import org.apache.uima.jcas.tcas.Annotat
  *   
  *   for not-bounded, 
  *     - ignore strict and skipEq
- *     - order-not-needed only applies if iicp size > 1
- *     - unambig ==> use Subiterator
+ *     - order-not-needed only applies if iicp size &gt; 1
+ *     - unambig ==&gt; use Subiterator
  *         -- subiterator wraps: according to typePriority and order-not-needed
  *     - no Type Priority - need to pass in as arg to fsIterator_multiple_indexes
  *        == if no type priority, need to prevent rattling off the == type while comparate is equal

Modified: uima/uv3/uimaj-v3/trunk/uimaj-core/src/main/java/org/apache/uima/jcas/JCas.java
URL: http://svn.apache.org/viewvc/uima/uv3/uimaj-v3/trunk/uimaj-core/src/main/java/org/apache/uima/jcas/JCas.java?rev=1806971&r1=1806970&r2=1806971&view=diff
==============================================================================
--- uima/uv3/uimaj-v3/trunk/uimaj-core/src/main/java/org/apache/uima/jcas/JCas.java (original)
+++ uima/uv3/uimaj-v3/trunk/uimaj-core/src/main/java/org/apache/uima/jcas/JCas.java Fri Sep  1 15:01:18 2017
@@ -637,6 +637,7 @@ public interface JCas extends AbstractCa
   /**
    * Remove all instances of type, including all subtypes from all indexes in the repository view.
    * @param clazz the JCas class of the type to remove.  To remove all use TOP.class
+   * @param <T> the type to remove
    * @exception NullPointerException if the <code>clazz</code> parameter is <code>null</code>.
   */
   default <T extends TOP> void removeAllIncludingSubtypes(Class<T> clazz) {
@@ -652,6 +653,7 @@ public interface JCas extends AbstractCa
   /**
    * Remove all instances of just this type, excluding subtypes, from all indexes in the repository view.
    * @param clazz the JCas Class of the type to remove
+   * @param <T> the type to remove
    * @exception NullPointerException if the <code>type</code> parameter is <code>null</code>.
   */
   default <T extends TOP> void removeAllExcludingSubtypes(Class<T> clazz) {