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 2010/08/31 19:07:25 UTC

svn commit: r991264 - /uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_engine/ResultSpecification.java

Author: schor
Date: Tue Aug 31 17:07:24 2010
New Revision: 991264

URL: http://svn.apache.org/viewvc?rev=991264&view=rev
Log:
[UIMA-1860] Correct a Javadoc comment to match what the impl actually does. This impl is used in the UIMA version 1.x "adapter" code, and in serialization.

Modified:
    uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_engine/ResultSpecification.java

Modified: uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_engine/ResultSpecification.java
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_engine/ResultSpecification.java?rev=991264&r1=991263&r2=991264&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_engine/ResultSpecification.java (original)
+++ uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/analysis_engine/ResultSpecification.java Tue Aug 31 17:07:24 2010
@@ -103,15 +103,15 @@ import org.apache.uima.util.XMLizable;
  */
 public interface ResultSpecification extends XMLizable, Serializable, Cloneable {
   /**
-   * Retrieves the Types and Features that the AnalysisEngine or Annotator is requested to produce
-   * for the default language x-unspecified (that is, regardless any language specification).
+   * Retrieves the Types and Features that the AnalysisEngine or Annotator is requested to produce,
+   * for all languages.
    * <p>
    * The set of types and features returned are just the ones that have been 
    * explicitly set or added to the ResultSpecification, and doesn't include
    * any derived subtypes, even if this ResultSpecification has been compiled. 
    * 
    * @return an array of {@link TypeOrFeature} objects that define the result types and features for
-   *         the language x-unspecified.
+   *         all languages.
    */
   public TypeOrFeature[] getResultTypesAndFeatures();