You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by al...@apache.org on 2007/03/02 15:56:02 UTC

svn commit: r513792 - in /incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_engine: CasIterator.java JCasIterator.java

Author: alally
Date: Fri Mar  2 06:56:02 2007
New Revision: 513792

URL: http://svn.apache.org/viewvc?view=rev&rev=513792
Log:
minor javadoc corrections

Modified:
    incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_engine/CasIterator.java
    incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_engine/JCasIterator.java

Modified: incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_engine/CasIterator.java
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_engine/CasIterator.java?view=diff&rev=513792&r1=513791&r2=513792
==============================================================================
--- incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_engine/CasIterator.java (original)
+++ incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_engine/CasIterator.java Fri Mar  2 06:56:02 2007
@@ -34,7 +34,7 @@
    * 
    * @throws AnalysisEngineProcessException
    *           if a failure has occurred during processing. If an exception is thrown, this
-   *           indicates that processing has aborted, so no further calls to the ResultIterator
+   *           indicates that processing has aborted, so no further calls to the CasIterator
    *           should be made.
    */
   boolean hasNext() throws AnalysisEngineProcessException;
@@ -46,7 +46,7 @@
    * 
    * @throws AnalysisEngineProcessException
    *           if a failure has occurred during processing. If an exception is thrown, this
-   *           indicates that processing has aborted, so no further calls to the ResultIterator
+   *           indicates that processing has aborted, so no further calls to the CasIterator
    *           should be made.
    */
   CAS next() throws AnalysisEngineProcessException;

Modified: incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_engine/JCasIterator.java
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_engine/JCasIterator.java?view=diff&rev=513792&r1=513791&r2=513792
==============================================================================
--- incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_engine/JCasIterator.java (original)
+++ incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_engine/JCasIterator.java Fri Mar  2 06:56:02 2007
@@ -34,7 +34,7 @@
    * 
    * @throws AnalysisEngineProcessException
    *           if a failure has occurred during processing. If an exception is thrown, this
-   *           indicates that processing has aborted, so no further calls to the ResultIterator
+   *           indicates that processing has aborted, so no further calls to the JCasIterator
    *           should be made.
    */
   boolean hasNext() throws AnalysisEngineProcessException;
@@ -46,13 +46,13 @@
    * 
    * @throws AnalysisEngineProcessException
    *           if a failure has occurred during processing. If an exception is thrown, this
-   *           indicates that processing has aborted, so no further calls to the ResultIterator
+   *           indicates that processing has aborted, so no further calls to the JCasIterator
    *           should be made.
    */
   JCas next() throws AnalysisEngineProcessException;
 
   /**
-   * Releases any CASes owned by this CasIterator. You only need to Call this method if you stop
+   * Releases any CASes owned by this JCasIterator. You only need to Call this method if you stop
    * using a CasIterator before you have iterated all the way through.
    */
   public void release();