You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by jo...@apache.org on 2009/06/19 00:33:29 UTC

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

Author: joern
Date: Thu Jun 18 22:33:29 2009
New Revision: 786322

URL: http://svn.apache.org/viewvc?rev=786322&view=rev
Log:
No jira, corrected spelling mistakes

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

Modified: incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/flow/impl/CapabilityLanguageFlowController.java
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/flow/impl/CapabilityLanguageFlowController.java?rev=786322&r1=786321&r2=786322&view=diff
==============================================================================
--- incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/flow/impl/CapabilityLanguageFlowController.java (original)
+++ incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/flow/impl/CapabilityLanguageFlowController.java Thu Jun 18 22:33:29 2009
@@ -47,7 +47,7 @@
 import org.apache.uima.util.XMLInputSource;
 
 /**
- * FlowController for the CapabilityLanguageFlow, which uses a linear fow but may skip some of the
+ * FlowController for the CapabilityLanguageFlow, which uses a linear flow but may skip some of the
  * AEs in the flow if they do not handle the language of the current document or if their outputs
  * have already been produced by a previous AE in the flow.
  */
@@ -104,7 +104,7 @@
 
   /**
    * method computeFlowTable create the flow table for faster processing. The flow table includes
-   * the coresponding flow sequence for all languages in the capabilities 
+   * the corresponding flow sequence for all languages in the capabilities 
    * 
    * @param aCapabilities
    *          aggregate engine capabilities
@@ -209,7 +209,7 @@
       // flag if current analysis engine should be called or not
       boolean shouldEngineBeCalled = false;
 
-      // check output capabilites from the current result spec
+      // check output capabilities from the current result spec
 
       // get next analysis engine from the sequence node
       node = mStaticSequence.get(sequenceIndex);
@@ -222,7 +222,7 @@
               .createResultSpecification();
 
       // check if engine should be called - 
-      //   loop over all remaining ouput capabilities of the aggregate's result spec
+      //   loop over all remaining output capabilities of the aggregate's result spec
       //     to see if this component of the aggregate produces that type or feature,
       //     for this language
       for (TypeOrFeature tof : tofsNeeded) {