/* First created by JCasGen Tue Oct 02 12:01:59 CEST 2012 */ package edu.ucdenver.ccp.nlp.core.uima.annotation.metadata; import org.apache.uima.jcas.JCas; import org.apache.uima.jcas.JCasRegistry; import org.apache.uima.cas.impl.CASImpl; import org.apache.uima.cas.impl.FSGenerator; import org.apache.uima.cas.FeatureStructure; import org.apache.uima.cas.impl.TypeImpl; import org.apache.uima.cas.Type; /** Indicates this annotation was scored as a True Positive during an evaluation. * Updated by JCasGen Tue Oct 02 12:01:59 CEST 2012 * @generated */ public class TruePositiveProperty_Type extends TestSetProperty_Type { /** @generated */ @Override protected FSGenerator getFSGenerator() {return fsGenerator;} /** @generated */ private final FSGenerator fsGenerator = new FSGenerator() { public FeatureStructure createFS(int addr, CASImpl cas) { if (TruePositiveProperty_Type.this.useExistingInstance) { // Return eq fs instance if already created FeatureStructure fs = TruePositiveProperty_Type.this.jcas.getJfsFromCaddr(addr); if (null == fs) { fs = new TruePositiveProperty(addr, TruePositiveProperty_Type.this); TruePositiveProperty_Type.this.jcas.putJfsFromCaddr(addr, fs); return fs; } return fs; } else return new TruePositiveProperty(addr, TruePositiveProperty_Type.this); } }; /** @generated */ @SuppressWarnings ("hiding") public final static int typeIndexID = TruePositiveProperty.typeIndexID; /** @generated @modifiable */ @SuppressWarnings ("hiding") public final static boolean featOkTst = JCasRegistry.getFeatOkTst("edu.ucdenver.ccp.nlp.core.uima.annotation.metadata.TruePositiveProperty"); /** initialize variables to correspond with Cas Type and Features * @generated */ public TruePositiveProperty_Type(JCas jcas, Type casType) { super(jcas, casType); casImpl.getFSClassRegistry().addGeneratorForType((TypeImpl)this.casType, getFSGenerator()); } }