/* 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 that an annotation was part of the Gold Standard during an evaluation. * Updated by JCasGen Tue Oct 02 12:01:59 CEST 2012 * @generated */ public class GoldStandardSetProperty_Type extends EvaluationResultProperty_Type { /** @generated */ @Override protected FSGenerator getFSGenerator() {return fsGenerator;} /** @generated */ private final FSGenerator fsGenerator = new FSGenerator() { public FeatureStructure createFS(int addr, CASImpl cas) { if (GoldStandardSetProperty_Type.this.useExistingInstance) { // Return eq fs instance if already created FeatureStructure fs = GoldStandardSetProperty_Type.this.jcas.getJfsFromCaddr(addr); if (null == fs) { fs = new GoldStandardSetProperty(addr, GoldStandardSetProperty_Type.this); GoldStandardSetProperty_Type.this.jcas.putJfsFromCaddr(addr, fs); return fs; } return fs; } else return new GoldStandardSetProperty(addr, GoldStandardSetProperty_Type.this); } }; /** @generated */ @SuppressWarnings ("hiding") public final static int typeIndexID = GoldStandardSetProperty.typeIndexID; /** @generated @modifiable */ @SuppressWarnings ("hiding") public final static boolean featOkTst = JCasRegistry.getFeatOkTst("edu.ucdenver.ccp.nlp.core.uima.annotation.metadata.GoldStandardSetProperty"); /** initialize variables to correspond with Cas Type and Features * @generated */ public GoldStandardSetProperty_Type(JCas jcas, Type casType) { super(jcas, casType); casImpl.getFSClassRegistry().addGeneratorForType((TypeImpl)this.casType, getFSGenerator()); } }