UIMAFramework.getLogger(this.getClass()).log(Level.INFO, " dumping CasData-\n");
dumpFeatures(aCasList[instanceCount]);
}
if (dataFrame != null) {
FeatureStructure vfs = new FeatureStructureImpl();
vfs.setType(org.apache.uima.collection.impl.cpm.Constants.STAT_FEATURE);
String frame2CasTime = dataFrame.fgetString(Constants.FRAME_TO_CAS_TIME);
if (frame2CasTime != null) {
PrimitiveValue pv = new PrimitiveValueImpl(frame2CasTime);
vfs.setFeatureValue(Constants.FRAME_TO_CAS_TIME, pv);
}
String annotationTime = dataFrame.fgetString(Constants.ANNOTATION_TIME);
if (annotationTime != null) {
PrimitiveValue pv = new PrimitiveValueImpl(annotationTime);
vfs.setFeatureValue(Constants.ANNOTATION_TIME, pv);
}
String cas2FrameTime = dataFrame.fgetString(Constants.CAS_TO_FRAME_TIME);
if (cas2FrameTime != null) {
PrimitiveValue pv = new PrimitiveValueImpl(cas2FrameTime);
vfs.setFeatureValue(Constants.CAS_TO_FRAME_TIME, pv);
}
aCasList[instanceCount].addFeatureStructure(vfs);
}
instanceCount++;
} catch (Exception e) {