/* First created by JCasGen Wed Mar 16 10:14:05 CET 2011 */ package org.u_compare.shared.document.text; import org.apache.uima.cas.FeatureStructure; import org.apache.uima.cas.Type; import org.apache.uima.cas.impl.CASImpl; import org.apache.uima.cas.impl.FSGenerator; import org.apache.uima.cas.impl.TypeImpl; import org.apache.uima.jcas.JCas; import org.apache.uima.jcas.JCasRegistry; import org.u_compare.shared.document.Text_Type; /** Abstract type for text heading annotations. <br></br> * Updated by JCasGen Tue Mar 06 16:28:14 CET 2012 * @generated */ public class Heading_Type extends Text_Type { /** @generated */ protected FSGenerator getFSGenerator() {return fsGenerator;} /** @generated */ private final FSGenerator fsGenerator = new FSGenerator() { public FeatureStructure createFS(int addr, CASImpl cas) { if (Heading_Type.this.useExistingInstance) { // Return eq fs instance if already created FeatureStructure fs = Heading_Type.this.jcas.getJfsFromCaddr(addr); if (null == fs) { fs = new Heading(addr, Heading_Type.this); Heading_Type.this.jcas.putJfsFromCaddr(addr, fs); return fs; } return fs; } else return new Heading(addr, Heading_Type.this); } }; /** @generated */ public final static int typeIndexID = Heading.typeIndexID; /** @generated @modifiable */ public final static boolean featOkTst = JCasRegistry.getFeatOkTst("org.u_compare.shared.document.text.Heading"); /** initialize variables to correspond with Cas Type and Features * @generated */ public Heading_Type(JCas jcas, Type casType) { super(jcas, casType); casImpl.getFSClassRegistry().addGeneratorForType((TypeImpl)this.casType, getFSGenerator()); } }