uima.ruta.example.Author Maven / Gradle / Ivy
The newest version!
/* Apache UIMA v3 - First created by JCasGen Sat Nov 30 19:53:51 CET 2024 */
package uima.ruta.example;
import org.apache.uima.cas.impl.CASImpl;
import org.apache.uima.cas.impl.TypeImpl;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.jcas.tcas.Annotation;
/**
* Updated by JCasGen Sat Nov 30 19:53:51 CET 2024
* XML source: /Users/bluefire/git/uima-ruta-release/target/checkout/example-projects/ruta-maven-example/target/jcasgen/typesystem.xml
* @generated */
public class Author extends Annotation {
/** @generated
* @ordered
*/
@SuppressWarnings ("hiding")
public final static String _TypeName = "uima.ruta.example.Author";
/** @generated
* @ordered
*/
@SuppressWarnings ("hiding")
public final static int typeIndexID = JCasRegistry.register(Author.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 *
* *******************/
/* Feature Adjusted Offsets */
/** Never called. Disable default constructor
* @generated */
@Deprecated
@SuppressWarnings ("deprecation")
protected Author() {/* 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 Author(TypeImpl type, CASImpl casImpl) {
super(type, casImpl);
readObject();
}
/** @generated
* @param jcas JCas to which this Feature Structure belongs
*/
public Author(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 Author(JCas jcas, int begin, int end) {
super(jcas);
setBegin(begin);
setEnd(end);
readObject();
}
/**
*
* Write your own initialization here
*
*
* @generated modifiable
*/
private void readObject() {/*default - does nothing empty block */}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy