blob: c94f05cbf3f6449cf12311c659de2e093abb1352 [file] [log] [blame]
/* First created by JCasGen Tue Aug 09 16:26:13 CEST 2011 */
package org.apache.uima.ruta.type;
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;
/**
* Updated by JCasGen Wed Jan 11 14:42:26 CET 2012
*
* @generated
*/
public class COMMA_Type extends PM_Type {
/** @generated */
protected FSGenerator getFSGenerator() {
return fsGenerator;
}
/** @generated */
private final FSGenerator fsGenerator = new FSGenerator() {
public FeatureStructure createFS(int addr, CASImpl cas) {
if (COMMA_Type.this.useExistingInstance) {
// Return eq fs instance if already created
FeatureStructure fs = COMMA_Type.this.jcas.getJfsFromCaddr(addr);
if (null == fs) {
fs = new COMMA(addr, COMMA_Type.this);
COMMA_Type.this.jcas.putJfsFromCaddr(addr, fs);
return fs;
}
return fs;
} else
return new COMMA(addr, COMMA_Type.this);
}
};
/** @generated */
public final static int typeIndexID = COMMA.typeIndexID;
/**
* @generated
* @modifiable
*/
public final static boolean featOkTst = JCasRegistry
.getFeatOkTst("org.apache.uima.ruta.type.COMMA");
/**
* initialize variables to correspond with Cas Type and Features
*
* @generated
*/
public COMMA_Type(JCas jcas, Type casType) {
super(jcas, casType);
casImpl.getFSClassRegistry().addGeneratorForType((TypeImpl) this.casType, getFSGenerator());
}
}