You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by mb...@apache.org on 2007/03/06 17:40:59 UTC

svn commit: r515199 - /incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/flow/impl/FixedFlowController.java

Author: mbaessler
Date: Tue Mar  6 08:40:58 2007
New Revision: 515199

URL: http://svn.apache.org/viewvc?view=rev&rev=515199
Log:
replace bad UTF-8 characters with ":"

Modified:
    incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/flow/impl/FixedFlowController.java

Modified: incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/flow/impl/FixedFlowController.java
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/flow/impl/FixedFlowController.java?view=diff&rev=515199&r1=515198&r2=515199
==============================================================================
--- incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/flow/impl/FixedFlowController.java (original)
+++ incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/flow/impl/FixedFlowController.java Tue Mar  6 08:40:58 2007
@@ -52,12 +52,12 @@
   /**
    * Key for the configuation parameter that determines what should happen to a
    * CAS after it has been input to a CAS Multiplier.  Possible values are:
-   * continue – the CAS continues on to the next element in the flow
-   * stop – the CAS will no longer continue in the flow, and will be returned from the
+   * continue:  the CAS continues on to the next element in the flow
+   * stop: the CAS will no longer continue in the flow, and will be returned from the
    *        aggregate if possible.
-   * drop – the CAS will no longer continue in the flow, and will be dropped (not 
+   * drop: the CAS will no longer continue in the flow, and will be dropped (not 
    *        returned from the aggregate) if possible.
-   * dropIfNewCasProduced (the default) – if the CAS multiplier produced a new CAS as a
+   * dropIfNewCasProduced (the default): if the CAS multiplier produced a new CAS as a
    *        result of processing this CAS, then this CAS will be dropped. If not, then this CAS
    *        will continue.
    */