You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by cw...@apache.org on 2009/10/28 18:21:45 UTC

svn commit: r830683 - in /incubator/uima/uima-as/trunk/uimaj-as-activemq/src/test/resources/descriptors: analysis_engine/ flow/

Author: cwiklik
Date: Wed Oct 28 17:21:45 2009
New Revision: 830683

URL: http://svn.apache.org/viewvc?rev=830683&view=rev
Log:
UIMA-1640 tests type system merge

Added:
    incubator/uima/uima-as/trunk/uimaj-as-activemq/src/test/resources/descriptors/analysis_engine/GovernmentOfficialRecognizer_RegEx_TAE.xml
    incubator/uima/uima-as/trunk/uimaj-as-activemq/src/test/resources/descriptors/analysis_engine/NamesAndPersonTitles_TAE.xml
    incubator/uima/uima-as/trunk/uimaj-as-activemq/src/test/resources/descriptors/analysis_engine/SimpleTokenAndSentenceAnnotator.xml
    incubator/uima/uima-as/trunk/uimaj-as-activemq/src/test/resources/descriptors/analysis_engine/TypeSystemMergeTestAggregate.xml
    incubator/uima/uima-as/trunk/uimaj-as-activemq/src/test/resources/descriptors/flow/AdvancedFixedFlowControllerWithTS.xml

Added: incubator/uima/uima-as/trunk/uimaj-as-activemq/src/test/resources/descriptors/analysis_engine/GovernmentOfficialRecognizer_RegEx_TAE.xml
URL: http://svn.apache.org/viewvc/incubator/uima/uima-as/trunk/uimaj-as-activemq/src/test/resources/descriptors/analysis_engine/GovernmentOfficialRecognizer_RegEx_TAE.xml?rev=830683&view=auto
==============================================================================
--- incubator/uima/uima-as/trunk/uimaj-as-activemq/src/test/resources/descriptors/analysis_engine/GovernmentOfficialRecognizer_RegEx_TAE.xml (added)
+++ incubator/uima/uima-as/trunk/uimaj-as-activemq/src/test/resources/descriptors/analysis_engine/GovernmentOfficialRecognizer_RegEx_TAE.xml Wed Oct 28 17:21:45 2009
@@ -0,0 +1,141 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+	<!--
+	 ***************************************************************
+	 * Licensed to the Apache Software Foundation (ASF) under one
+	 * or more contributor license agreements.  See the NOTICE file
+	 * distributed with this work for additional information
+	 * regarding copyright ownership.  The ASF licenses this file
+	 * to you under the Apache License, Version 2.0 (the
+	 * "License"); you may not use this file except in compliance
+	 * with the License.  You may obtain a copy of the License at
+         *
+	 *   http://www.apache.org/licenses/LICENSE-2.0
+	 * 
+	 * Unless required by applicable law or agreed to in writing,
+	 * software distributed under the License is distributed on an
+	 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+	 * KIND, either express or implied.  See the License for the
+	 * specific language governing permissions and limitations
+	 * under the License.
+	 ***************************************************************
+   -->
+   
+<analysisEngineDescription xmlns="http://uima.apache.org/resourceSpecifier">
+  <frameworkImplementation>org.apache.uima.java</frameworkImplementation>
+  <primitive>true</primitive>
+  <annotatorImplementationName>org.apache.uima.examples.cas.RegExAnnotator</annotatorImplementationName>
+  <analysisEngineMetaData>
+    <name>Government Title Recognizer using Regular Expressions</name>
+    <description>Detects Government Titles using regular expressions.</description>
+    <configurationParameters>
+      <configurationParameter>
+        <name>Patterns</name>
+        <description>Regular expression patterns to match.  The language is that supported by Java 1.4.</description>
+        <type>String</type>
+        <multiValued>true</multiValued>
+        <mandatory>false</mandatory>
+      </configurationParameter>
+      <configurationParameter>
+        <name>TypeNames</name>
+        <description>Names of CAS Types to create for the patterns found.  The indexes of this array
+correspond to the indexes of the Patterns or PatternFiles arrays.  If a match is found for
+Patterns[i], it will result in an annotation of type
+TypeNames[i].</description>
+        <type>String</type>
+        <multiValued>true</multiValued>
+        <mandatory>false</mandatory>
+      </configurationParameter>
+      <configurationParameter>
+        <name>ContainingAnnotationTypes</name>
+        <description>Names of CAS Input Types within which annotations should be created.</description>
+        <type>String</type>
+        <multiValued>true</multiValued>
+        <mandatory>false</mandatory>
+      </configurationParameter>
+      <configurationParameter>
+        <name>AnnotateEntireContainingAnnotation</name>
+        <description>When the ContainingAnnoationTypes parameter is specified, a value of true for this
+	parameter will cause the entire containing annotation to be used as the span of the new
+	annotation, rather than just the span of the regular expression match.  This can be used
+	to "classify" previously created annotations according to whether or not they contain
+	text matching a regular expression.</description>
+        <type>Boolean</type>
+        <multiValued>false</multiValued>
+        <mandatory>false</mandatory>
+      </configurationParameter>
+    </configurationParameters>
+    <configurationParameterSettings>
+      <nameValuePair>
+        <name>ContainingAnnotationTypes</name>
+        <value>
+          <array>
+            <string>example.Name</string>
+          </array>
+        </value>
+      </nameValuePair>
+      <nameValuePair>
+        <name>AnnotateEntireContainingAnnotation</name>
+        <value>
+          <boolean>true</boolean>
+        </value>
+      </nameValuePair>
+    </configurationParameterSettings>
+    <typeSystemDescription>
+      <types>
+        <typeDescription>
+          <name>example.Name</name>
+          <description>A proper name.</description>
+          <supertypeName>uima.tcas.Annotation</supertypeName>
+        </typeDescription>
+        <typeDescription>
+          <name>example.GovernmentOfficial</name>
+          <description>A government official.</description>
+          <supertypeName>uima.tcas.Annotation</supertypeName>
+        </typeDescription>
+      </types>
+    </typeSystemDescription>
+    <capabilities>
+      <capability>
+        <inputs>
+          <type>example.Name</type>
+        </inputs>
+        <outputs>
+          <type>example.GovernmentOfficial</type>
+        </outputs>
+        <languagesSupported>
+          <language>en</language>
+        </languagesSupported>
+      </capability>
+    </capabilities>
+	<operationalProperties>
+		<modifiesCas>true</modifiesCas>
+		<multipleDeploymentAllowed>true</multipleDeploymentAllowed>
+		<outputsNewCASes>false</outputsNewCASes>
+	</operationalProperties>
+  </analysisEngineMetaData>
+  <externalResourceDependencies>
+    <externalResourceDependency>
+      <key>PatternFile</key>
+      <description>An optional external file containing regular expressions to match. File format is as follows: - Lines starting with # or whitepsace are ignored - Lines starting with % indicate an annotation type. - All other lines are regular expressions. The languages is that supported by Java 1.4. If a regular expression is matched, it will be annotated with the last annotation type declared (the nearest preceding line starting with %).</description>
+      <optional>true</optional>
+    </externalResourceDependency>
+  </externalResourceDependencies>
+  <resourceManagerConfiguration>
+    <externalResources>
+      <externalResource>
+        <name>GovernmentTitlePatterns</name>
+        <description>File containing Regular Expressions for the CAS type example.GovernmentOfficial.</description>
+        <fileResourceSpecifier>
+          <fileUrl>file:GovernmentTitlePatterns.dat</fileUrl>
+        </fileResourceSpecifier>
+      </externalResource>
+    </externalResources>
+    <externalResourceBindings>
+      <externalResourceBinding>
+        <key>PatternFile</key>
+        <resourceName>GovernmentTitlePatterns</resourceName>
+      </externalResourceBinding>
+    </externalResourceBindings>
+  </resourceManagerConfiguration>
+</analysisEngineDescription>

Added: incubator/uima/uima-as/trunk/uimaj-as-activemq/src/test/resources/descriptors/analysis_engine/NamesAndPersonTitles_TAE.xml
URL: http://svn.apache.org/viewvc/incubator/uima/uima-as/trunk/uimaj-as-activemq/src/test/resources/descriptors/analysis_engine/NamesAndPersonTitles_TAE.xml?rev=830683&view=auto
==============================================================================
--- incubator/uima/uima-as/trunk/uimaj-as-activemq/src/test/resources/descriptors/analysis_engine/NamesAndPersonTitles_TAE.xml (added)
+++ incubator/uima/uima-as/trunk/uimaj-as-activemq/src/test/resources/descriptors/analysis_engine/NamesAndPersonTitles_TAE.xml Wed Oct 28 17:21:45 2009
@@ -0,0 +1,72 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+	<!--
+	 ***************************************************************
+	 * Licensed to the Apache Software Foundation (ASF) under one
+	 * or more contributor license agreements.  See the NOTICE file
+	 * distributed with this work for additional information
+	 * regarding copyright ownership.  The ASF licenses this file
+	 * to you under the Apache License, Version 2.0 (the
+	 * "License"); you may not use this file except in compliance
+	 * with the License.  You may obtain a copy of the License at
+         *
+	 *   http://www.apache.org/licenses/LICENSE-2.0
+	 * 
+	 * Unless required by applicable law or agreed to in writing,
+	 * software distributed under the License is distributed on an
+	 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+	 * KIND, either express or implied.  See the License for the
+	 * specific language governing permissions and limitations
+	 * under the License.
+	 ***************************************************************
+   -->
+   
+<analysisEngineDescription xmlns="http://uima.apache.org/resourceSpecifier">
+  <frameworkImplementation>org.apache.uima.java</frameworkImplementation>
+  <primitive>false</primitive>
+  <delegateAnalysisEngineSpecifiers>
+    <delegateAnalysisEngine key="PersonTitleAnnotator">
+      <import location="PersonTitleAnnotator_WithinNamesOnly.xml"/>
+    </delegateAnalysisEngine>
+    <delegateAnalysisEngine key="NameRecognizer">
+      <import location="SimpleNameRecognizer_RegEx_TAE.xml"/>
+    </delegateAnalysisEngine>
+  </delegateAnalysisEngineSpecifiers>
+  <analysisEngineMetaData>
+    <name>Aggregate TAE - Name Recognizer and Person Title Annotator</name>
+    <description>Detects Names and Person Titles</description>
+    <configurationParameters/>
+    <configurationParameterSettings/>
+    <flowConstraints>
+      <fixedFlow>
+        <node>NameRecognizer</node>
+        <node>PersonTitleAnnotator</node>
+      </fixedFlow>
+    </flowConstraints>
+    <capabilities>
+      <capability>
+        <inputs/>
+        <outputs>
+          <type allAnnotatorFeatures="true">example.PersonTitle</type>
+        </outputs>
+        <languagesSupported>
+          <language>en</language>
+        </languagesSupported>
+      </capability>
+      <capability>
+        <inputs/>
+        <outputs>
+          <type>example.Name</type>
+        </outputs>
+        <languagesSupported>
+          <language>x-unspecified</language>
+        </languagesSupported>
+      </capability>
+    </capabilities>
+	<operationalProperties>
+		<modifiesCas>true</modifiesCas>
+		<multipleDeploymentAllowed>true</multipleDeploymentAllowed>
+		<outputsNewCASes>false</outputsNewCASes>
+	</operationalProperties>
+  </analysisEngineMetaData>
+</analysisEngineDescription>

Added: incubator/uima/uima-as/trunk/uimaj-as-activemq/src/test/resources/descriptors/analysis_engine/SimpleTokenAndSentenceAnnotator.xml
URL: http://svn.apache.org/viewvc/incubator/uima/uima-as/trunk/uimaj-as-activemq/src/test/resources/descriptors/analysis_engine/SimpleTokenAndSentenceAnnotator.xml?rev=830683&view=auto
==============================================================================
--- incubator/uima/uima-as/trunk/uimaj-as-activemq/src/test/resources/descriptors/analysis_engine/SimpleTokenAndSentenceAnnotator.xml (added)
+++ incubator/uima/uima-as/trunk/uimaj-as-activemq/src/test/resources/descriptors/analysis_engine/SimpleTokenAndSentenceAnnotator.xml Wed Oct 28 17:21:45 2009
@@ -0,0 +1,67 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+	<!--
+	 ***************************************************************
+	 * Licensed to the Apache Software Foundation (ASF) under one
+	 * or more contributor license agreements.  See the NOTICE file
+	 * distributed with this work for additional information
+	 * regarding copyright ownership.  The ASF licenses this file
+	 * to you under the Apache License, Version 2.0 (the
+	 * "License"); you may not use this file except in compliance
+	 * with the License.  You may obtain a copy of the License at
+         *
+	 *   http://www.apache.org/licenses/LICENSE-2.0
+	 * 
+	 * Unless required by applicable law or agreed to in writing,
+	 * software distributed under the License is distributed on an
+	 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+	 * KIND, either express or implied.  See the License for the
+	 * specific language governing permissions and limitations
+	 * under the License.
+	 ***************************************************************
+   -->
+   
+<analysisEngineDescription xmlns="http://uima.apache.org/resourceSpecifier">
+  <frameworkImplementation>org.apache.uima.java</frameworkImplementation>
+  <primitive>true</primitive>
+  <annotatorImplementationName>org.apache.uima.examples.tokenizer.SimpleTokenAndSentenceAnnotator</annotatorImplementationName>
+  <analysisEngineMetaData>
+    <name>Simple Token and Sentence Annotator</name>
+    <description>Annotates tokens and sentences.</description>
+    <version>1.0</version>
+    <vendor>The Apache Software Foundation</vendor>
+    <configurationParameters/>
+    <configurationParameterSettings/>
+    <typeSystemDescription>
+      <types>
+        <typeDescription>
+          <name>org.apache.uima.examples.tokenizer.Token</name>
+          <description></description>
+          <supertypeName>uima.tcas.Annotation</supertypeName>
+        </typeDescription>
+        <typeDescription>
+          <name>org.apache.uima.examples.tokenizer.Sentence</name>
+          <description></description>
+          <supertypeName>uima.tcas.Annotation</supertypeName>
+        </typeDescription>
+      </types>
+    </typeSystemDescription>
+    <capabilities>
+      <capability>
+        <inputs/>
+        <outputs>
+          <type allAnnotatorFeatures="true">org.apache.uima.examples.tokenizer.Sentence</type>
+          <type allAnnotatorFeatures="true">org.apache.uima.examples.tokenizer.Token</type>
+        </outputs>
+        <languagesSupported>
+          <language>en</language>
+        </languagesSupported>
+      </capability>
+    </capabilities>
+	<operationalProperties>
+		<modifiesCas>true</modifiesCas>
+		<multipleDeploymentAllowed>true</multipleDeploymentAllowed>
+		<outputsNewCASes>false</outputsNewCASes>
+	</operationalProperties>
+  </analysisEngineMetaData>
+</analysisEngineDescription>

Added: incubator/uima/uima-as/trunk/uimaj-as-activemq/src/test/resources/descriptors/analysis_engine/TypeSystemMergeTestAggregate.xml
URL: http://svn.apache.org/viewvc/incubator/uima/uima-as/trunk/uimaj-as-activemq/src/test/resources/descriptors/analysis_engine/TypeSystemMergeTestAggregate.xml?rev=830683&view=auto
==============================================================================
--- incubator/uima/uima-as/trunk/uimaj-as-activemq/src/test/resources/descriptors/analysis_engine/TypeSystemMergeTestAggregate.xml (added)
+++ incubator/uima/uima-as/trunk/uimaj-as-activemq/src/test/resources/descriptors/analysis_engine/TypeSystemMergeTestAggregate.xml Wed Oct 28 17:21:45 2009
@@ -0,0 +1,101 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+	<!--
+	 ***************************************************************
+	 * Licensed to the Apache Software Foundation (ASF) under one
+	 * or more contributor license agreements.  See the NOTICE file
+	 * distributed with this work for additional information
+	 * regarding copyright ownership.  The ASF licenses this file
+	 * to you under the Apache License, Version 2.0 (the
+	 * "License"); you may not use this file except in compliance
+	 * with the License.  You may obtain a copy of the License at
+         *
+	 *   http://www.apache.org/licenses/LICENSE-2.0
+	 * 
+	 * Unless required by applicable law or agreed to in writing,
+	 * software distributed under the License is distributed on an
+	 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+	 * KIND, either express or implied.  See the License for the
+	 * specific language governing permissions and limitations
+	 * under the License.
+	 ***************************************************************
+   -->
+   
+<analysisEngineDescription xmlns="http://uima.apache.org/resourceSpecifier">
+  <frameworkImplementation>org.apache.uima.java</frameworkImplementation>
+  <primitive>false</primitive>
+  <delegateAnalysisEngineSpecifiers>
+    
+    <delegateAnalysisEngine key="TestMultiplier">
+      <import location="../multiplier/SimpleCasGenerator.xml"/>
+    </delegateAnalysisEngine>
+
+
+      <delegateAnalysisEngine key="GovOffReco">
+      <import location="GovernmentOfficialRecognizer_RegEx_TAE.xml"/>
+    </delegateAnalysisEngine>
+  
+      <delegateAnalysisEngine key="PersonTitleReco">
+      <import location="NamesAndPersonTitles_TAE.xml"/>
+    </delegateAnalysisEngine>
+
+    <delegateAnalysisEngine key="TokenSentenceReco">
+      <import location="SimpleTokenAndSentenceAnnotator.xml"/>
+    </delegateAnalysisEngine>
+
+
+  </delegateAnalysisEngineSpecifiers>
+  <flowController key="FlowController">
+     <import location="../flow/AdvancedFixedFlowControllerWithTS.xml" /> 
+  </flowController>
+
+  <analysisEngineMetaData>
+    <name>Test Aggregate TAE</name>
+    <description>Detects Nothing</description>
+    <configurationParameters>
+       <configurationParameter>
+        <name>Flow</name>
+        <description> Specifies the flow. This is an array of strings where each string is either a single Analysis
+          Engine key
+          </description>
+        <type>String</type>
+        <multiValued>true</multiValued>
+        <mandatory>true</mandatory>
+        <overrides>
+          <parameter>FlowController/Flow</parameter>
+        </overrides>
+      </configurationParameter>
+    </configurationParameters>
+    <configurationParameterSettings>
+      <!-- This specifies the flow -->
+      <nameValuePair>
+        <name>Flow</name>
+        <value>
+          <array>
+            <string>TestMultiplier</string>
+            <string>GovOffReco</string> 
+            <string>PersonTitleReco</string> 
+            <string>TokenSentenceReco</string>
+          </array>
+        </value>
+      </nameValuePair>
+    </configurationParameterSettings>
+    
+    
+    <capabilities>
+      <capability>
+        <inputs/>
+        <outputs>
+        </outputs>
+        <languagesSupported>
+          <language>en</language>
+        </languagesSupported>
+      </capability>
+    </capabilities>
+	<operationalProperties>
+		<modifiesCas>true</modifiesCas>
+		<multipleDeploymentAllowed>true</multipleDeploymentAllowed>
+		<outputsNewCASes>false</outputsNewCASes>
+	</operationalProperties>
+  </analysisEngineMetaData>
+</analysisEngineDescription>

Added: incubator/uima/uima-as/trunk/uimaj-as-activemq/src/test/resources/descriptors/flow/AdvancedFixedFlowControllerWithTS.xml
URL: http://svn.apache.org/viewvc/incubator/uima/uima-as/trunk/uimaj-as-activemq/src/test/resources/descriptors/flow/AdvancedFixedFlowControllerWithTS.xml?rev=830683&view=auto
==============================================================================
--- incubator/uima/uima-as/trunk/uimaj-as-activemq/src/test/resources/descriptors/flow/AdvancedFixedFlowControllerWithTS.xml (added)
+++ incubator/uima/uima-as/trunk/uimaj-as-activemq/src/test/resources/descriptors/flow/AdvancedFixedFlowControllerWithTS.xml Wed Oct 28 17:21:45 2009
@@ -0,0 +1,113 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+***************************************************************
+* Licensed to the Apache Software Foundation (ASF) under one
+* or more contributor license agreements.  See the NOTICE file
+* distributed with this work for additional information
+* regarding copyright ownership.  The ASF licenses this file
+* to you under the Apache License, Version 2.0 (the
+* "License"); you may not use this file except in compliance
+* with the License.  You may obtain a copy of the License at
+* 
+*   http://www.apache.org/licenses/LICENSE-2.0
+* 
+* Unless required by applicable law or agreed to in writing,
+* software distributed under the License is distributed on an
+* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+* KIND, either express or implied.  See the License for the
+* specific language governing permissions and limitations
+* under the License.
+***************************************************************
+-->
+
+<flowControllerDescription xmlns="http://uima.apache.org/resourceSpecifier">
+  <frameworkImplementation>org.apache.uima.java</frameworkImplementation>
+  <implementationName>org.apache.uima.ee.test.flow.AdvancedFixedFlowController</implementationName>
+  <processingResourceMetaData>
+    <name>Advanced Fixed Flow Controller</name>
+    <description>An extension of the FixedFlowController that can also do ParallelSteps and can continue after
+      errors. It is configured via the "Flow" configuration parameter rather than using the flowConstraints
+      element of the aggregate descriptor.</description>
+    <version>1.0</version>
+    <vendor>The Apache Software Foundation</vendor>
+    <configurationParameters>
+      <configurationParameter>
+        <name>ActionAfterCasMultiplier</name>
+        <description>The action to be taken after a CAS has been input to a CAS Multiplier and the CAS Multiplier has
+          finished processing it. Valid 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 aggregate if possible. 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 result of
+          processing this CAS, then this CAS will be dropped. If not, then this CAS will continue. </description>
+        <type>String</type>
+        <multiValued>false</multiValued>
+        <mandatory>false</mandatory>
+      </configurationParameter>
+      
+      <configurationParameter>
+        <name>Flow</name>
+        <description> Specifies the flow. This is an array of strings where each string is either a single Analysis
+          Engine key or a comma-separated list of Analysis Engine keys that should be executed in parallel.
+          </description>
+        <type>String</type>
+        <multiValued>true</multiValued>
+        <mandatory>true</mandatory>
+      </configurationParameter>
+      
+      <configurationParameter>
+        <name>AllowContinueOnFailure</name>
+        <description> Specifies for which AnalysisEngines the Flow should continue when an exception occurs. This
+          parameter takes an array of Strings as its value. Each String is the key of AnalysisEngine for which
+          continuing on failure should be allowed. </description>
+        <type>String</type>
+        <multiValued>true</multiValued>
+        <mandatory>false</mandatory>
+      </configurationParameter>
+
+      <configurationParameter>
+        <name>AllowDropOnFailure</name>
+        <description> Specifies for which AnalysisEngines a failed CAS can be dropped when an exception occurs. This
+          only applies to internally created CASes and prevents the exception from being transferred to their parent. This 
+          parameter takes an array of Strings as its value. Each String is the key of AnalysisEngine for which
+          dropping on failure should be allowed. </description>
+        <type>String</type>
+        <multiValued>true</multiValued>
+        <mandatory>false</mandatory>
+      </configurationParameter>
+
+      <configurationParameter>
+        <name>ExceptionsToIgnore</name>
+        <description>Specifies which exceptions to ignore.</description>
+        <type>String</type>
+        <multiValued>true</multiValued>
+        <mandatory>false</mandatory>
+      </configurationParameter>
+    </configurationParameters>
+    <configurationParameterSettings>
+      <nameValuePair>
+        <name>ActionAfterCasMultiplier</name>
+        <value>
+          <string>dropIfNewCasProduced</string>
+        </value>
+      </nameValuePair>
+    </configurationParameterSettings>
+    
+    <typeSystemDescription>
+      <types>
+        <typeDescription>
+          <name>example.EmailAddress</name>
+          <description>Email Address</description>
+          <supertypeName>uima.tcas.Annotation</supertypeName>
+        </typeDescription>
+      </types>
+    </typeSystemDescription>
+    
+    <capabilities>
+      <capability>
+        <inputs/>
+        <outputs/>
+      </capability>
+    </capabilities>
+  </processingResourceMetaData>
+</flowControllerDescription>