blob: 88471d905d40b4a23e4c8bca9552640f5e5eb137 [file] [log] [blame]
/* Apache UIMA v3 - First created by JCasGen Wed Jun 01 09:36:38 CEST 2022 */
package org.apache.uima.test.jcasfeatureoffsettest;
import java.lang.invoke.CallSite;
import java.lang.invoke.MethodHandle;
import org.apache.uima.cas.impl.CASImpl;
import org.apache.uima.cas.impl.TypeImpl;
import org.apache.uima.cas.impl.TypeSystemImpl;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
/**
* Updated by JCasGen Wed Jun 01 09:36:38 CEST 2022
* XML source: /Users/bluefire/git/uima-uimaj/uimaj-core/src/test/resources/JCasFeatureOffsetTest/SubtypeDescriptor2.xml
* @generated */
public class Subtype extends Base {
/** @generated
* @ordered
*/
@SuppressWarnings ("hiding")
public final static String _TypeName = "org.apache.uima.test.jcasfeatureoffsettest.Subtype";
/** @generated
* @ordered
*/
@SuppressWarnings ("hiding")
public final static int typeIndexID = JCasRegistry.register(Subtype.class);
/** @generated
* @ordered
*/
@SuppressWarnings ("hiding")
public final static int type = typeIndexID;
/** @generated
* @return index of the type
*/
@Override
public int getTypeIndexID() {return typeIndexID;}
/* *******************
* Feature Offsets *
* *******************/
public final static String _FeatName_featureY = "featureY";
/* Feature Adjusted Offsets */
private final static CallSite _FC_featureY = TypeSystemImpl.createCallSite(Subtype.class, "featureY");
private final static MethodHandle _FH_featureY = _FC_featureY.dynamicInvoker();
/** Never called. Disable default constructor
* @generated */
@Deprecated
@SuppressWarnings ("deprecation")
protected Subtype() {/* intentionally empty block */}
/** Internal - constructor used by generator
* @generated
* @param casImpl the CAS this Feature Structure belongs to
* @param type the type of this Feature Structure
*/
public Subtype(TypeImpl type, CASImpl casImpl) {
super(type, casImpl);
readObject();
}
/** @generated
* @param jcas JCas to which this Feature Structure belongs
*/
public Subtype(JCas jcas) {
super(jcas);
readObject();
}
/** @generated
* @param jcas JCas to which this Feature Structure belongs
* @param begin offset to the begin spot in the SofA
* @param end offset to the end spot in the SofA
*/
public Subtype(JCas jcas, int begin, int end) {
super(jcas);
setBegin(begin);
setEnd(end);
readObject();
}
/**
* <!-- begin-user-doc -->
* Write your own initialization here
* <!-- end-user-doc -->
*
* @generated modifiable
*/
private void readObject() {/*default - does nothing empty block */}
//*--------------*
//* Feature: featureY
/** getter for featureY - gets
* @generated
* @return value of the feature
*/
public String getFeatureY() {
return _getStringValueNc(wrapGetIntCatchException(_FH_featureY));
}
/** setter for featureY - sets
* @generated
* @param v value to set into the feature
*/
public void setFeatureY(String v) {
_setStringValueNfc(wrapGetIntCatchException(_FH_featureY), v);
}
}