uima-ducc-common/src/main/java/org/apache/uima/ducc/common/uima/DuccJobProcessFC.java [94:115]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void typeSystemInit(TypeSystem aTypeSystem) throws AnalysisEngineProcessException {
	  // Get a reference to the "Workitem" Type
	  mWorkitemType = aTypeSystem.getType("org.apache.uima.ducc.Workitem");
	  if (mWorkitemType == null) {
		  throw new AnalysisEngineProcessException(AnnotatorInitializationException.TYPE_NOT_FOUND,
				  new Object[] { getClass().getName(), "org.apache.uima.ducc.Workitem" });
	  }
	
	  // Get a reference to the "sendToALL" Feature
	  mSendToAllFeature = mWorkitemType.getFeatureByBaseName("sendToAll");
	  if (mSendToAllFeature == null) {
		  throw new AnalysisEngineProcessException(AnnotatorInitializationException.FEATURE_NOT_FOUND,
				  new Object[] { getClass().getName(), "org.apache.uima.ducc.Workitem:sendToAll" });
	  }
	
	  // Get a reference to the "sendToLast" Feature
	  mSendToLastFeature = mWorkitemType.getFeatureByBaseName("sendToLast");
	  if (mSendToLastFeature == null) {
		  throw new AnalysisEngineProcessException(AnnotatorInitializationException.FEATURE_NOT_FOUND,
				  new Object[] { getClass().getName(), "org.apache.uima.ducc.Workitem:sendToLast" });
	  }
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



uima-ducc-user/src/main/java/org/apache/uima/ducc/FlowController.java [94:115]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void typeSystemInit(TypeSystem aTypeSystem) throws AnalysisEngineProcessException {
	  // Get a reference to the "Workitem" Type
	  mWorkitemType = aTypeSystem.getType("org.apache.uima.ducc.Workitem");
	  if (mWorkitemType == null) {
		  throw new AnalysisEngineProcessException(AnnotatorInitializationException.TYPE_NOT_FOUND,
				  new Object[] { getClass().getName(), "org.apache.uima.ducc.Workitem" });
	  }
	
	  // Get a reference to the "sendToALL" Feature
	  mSendToAllFeature = mWorkitemType.getFeatureByBaseName("sendToAll");
	  if (mSendToAllFeature == null) {
		  throw new AnalysisEngineProcessException(AnnotatorInitializationException.FEATURE_NOT_FOUND,
				  new Object[] { getClass().getName(), "org.apache.uima.ducc.Workitem:sendToAll" });
	  }
	
	  // Get a reference to the "sendToLast" Feature
	  mSendToLastFeature = mWorkitemType.getFeatureByBaseName("sendToLast");
	  if (mSendToLastFeature == null) {
		  throw new AnalysisEngineProcessException(AnnotatorInitializationException.FEATURE_NOT_FOUND,
				  new Object[] { getClass().getName(), "org.apache.uima.ducc.Workitem:sendToLast" });
	  }
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



