Skip to content
Snippets Groups Projects

Rede wiedergabe dev

Merged Ghost User requested to merge redeWiedergabe_dev into master
22 files
+ 61
2495
Compare changes
  • Side-by-side
  • Inline
Files
22
/* First created by JCasGen Wed Jul 19 10:01:06 CEST 2017 */
package de.idsma.rw;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.jcas.cas.TOP_Type;
import org.apache.uima.jcas.tcas.Annotation;
/**
* Updated by JCasGen Wed Jul 19 10:06:43 CEST 2017
* XML source: C:/Users/Tu.IDS-DOM/git/Athen/de.uniwue.mk.athen/bundles/de.ids.tt.athen.rwview/typesystem/redeWiedergabeTypesystem.xml
* @generated */
public class Expression extends Annotation {
/** @generated
* @ordered
*/
@SuppressWarnings ("hiding")
public final static int typeIndexID = JCasRegistry.register(Expression.class);
/** @generated
* @ordered
*/
@SuppressWarnings ("hiding")
public final static int type = typeIndexID;
/** @generated
* @return index of the type
*/
@Override
public int getTypeIndexID() {return typeIndexID;}
/** Never called. Disable default constructor
* @generated */
protected Expression() {/* intentionally empty block */}
/** Internal - constructor used by generator
* @generated
* @param addr low level Feature Structure reference
* @param type the type of this Feature Structure
*/
public Expression(int addr, TOP_Type type) {
super(addr, type);
readObject();
}
/** @generated
* @param jcas JCas to which this Feature Structure belongs
*/
public Expression(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 Expression(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: ExpressionID
/** getter for ExpressionID - gets
* @generated
* @return value of the feature
*/
public String getExpressionID() {
if (Expression_Type.featOkTst && ((Expression_Type)jcasType).casFeat_ExpressionID == null)
jcasType.jcas.throwFeatMissing("ExpressionID", "de.idsma.rw.Expression");
return jcasType.ll_cas.ll_getStringValue(addr, ((Expression_Type)jcasType).casFeatCode_ExpressionID);}
/** setter for ExpressionID - sets
* @generated
* @param v value to set into the feature
*/
public void setExpressionID(String v) {
if (Expression_Type.featOkTst && ((Expression_Type)jcasType).casFeat_ExpressionID == null)
jcasType.jcas.throwFeatMissing("ExpressionID", "de.idsma.rw.Expression");
jcasType.ll_cas.ll_setStringValue(addr, ((Expression_Type)jcasType).casFeatCode_ExpressionID, v);}
//*--------------*
//* Feature: Expression
/** getter for Expression - gets
* @generated
* @return value of the feature
*/
public String getExpression() {
if (Expression_Type.featOkTst && ((Expression_Type)jcasType).casFeat_Expression == null)
jcasType.jcas.throwFeatMissing("Expression", "de.idsma.rw.Expression");
return jcasType.ll_cas.ll_getStringValue(addr, ((Expression_Type)jcasType).casFeatCode_Expression);}
/** setter for Expression - sets
* @generated
* @param v value to set into the feature
*/
public void setExpression(String v) {
if (Expression_Type.featOkTst && ((Expression_Type)jcasType).casFeat_Expression == null)
jcasType.jcas.throwFeatMissing("Expression", "de.idsma.rw.Expression");
jcasType.ll_cas.ll_setStringValue(addr, ((Expression_Type)jcasType).casFeatCode_Expression, v);}
}
\ No newline at end of file
Loading