diff --git a/pom.xml b/pom.xml index 9a2a050b..38dbf1f7 100644 --- a/pom.xml +++ b/pom.xml @@ -122,8 +122,8 @@ true - src/main/resources/desc/type/TextTechnologyAnnotationSchema.xml - + + src/main/resources/desc/**/* src/main/java/ diff --git a/src/main/java/org/texttechnologylab/annotation/Climate.java b/src/main/java/org/texttechnologylab/annotation/Climate.java new file mode 100644 index 00000000..cf634cd2 --- /dev/null +++ b/src/main/java/org/texttechnologylab/annotation/Climate.java @@ -0,0 +1,203 @@ + + + +/* Apache UIMA v3 - First created by JCasGen Wed May 27 16:09:26 CEST 2026 */ + +package org.texttechnologylab.annotation; + + +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; + + +import org.apache.uima.jcas.cas.FSArray; +import org.texttechnologylab.annotation.model.MetaData; +import org.apache.uima.jcas.tcas.Annotation; + + +/** Climate Output + * Updated by JCasGen Wed May 27 16:09:26 CEST 2026 + * XML source: /home/staff_homes/bagci/projects/UIMATypeSystem/target/jcasgen/typesystem.xml + * @generated */ +public class Climate extends Annotation { + + /** @generated + * @ordered + */ + @SuppressWarnings ("hiding") + public final static String _TypeName = "org.texttechnologylab.annotation.Climate"; + + /** @generated + * @ordered + */ + @SuppressWarnings ("hiding") + public final static int typeIndexID = JCasRegistry.register(Climate.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_Climates = "Climates"; + public final static String _FeatName_ClimateType = "ClimateType"; + public final static String _FeatName_model = "model"; + + + /* Feature Adjusted Offsets */ + private final static CallSite _FC_Climates = TypeSystemImpl.createCallSite(Climate.class, "Climates"); + private final static MethodHandle _FH_Climates = _FC_Climates.dynamicInvoker(); + private final static CallSite _FC_ClimateType = TypeSystemImpl.createCallSite(Climate.class, "ClimateType"); + private final static MethodHandle _FH_ClimateType = _FC_ClimateType.dynamicInvoker(); + private final static CallSite _FC_model = TypeSystemImpl.createCallSite(Climate.class, "model"); + private final static MethodHandle _FH_model = _FC_model.dynamicInvoker(); + + + /** Never called. Disable default constructor + * @generated */ + @Deprecated + @SuppressWarnings ("deprecation") + protected Climate() {/* 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 Climate(TypeImpl type, CASImpl casImpl) { + super(type, casImpl); + readObject(); + } + + /** @generated + * @param jcas JCas to which this Feature Structure belongs + */ + public Climate(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 Climate(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 */} + + + + //*--------------* + //* Feature: Climates + + /** getter for Climates - gets Set of climate related keys and Value + * @generated + * @return value of the feature + */ + @SuppressWarnings("unchecked") + public FSArray getClimates() { + return (FSArray)(_getFeatureValueNc(wrapGetIntCatchException(_FH_Climates))); + } + + /** setter for Climates - sets Set of climate related keys and Value + * @generated + * @param v value to set into the feature + */ + public void setClimates(FSArray v) { + _setFeatureValueNcWj(wrapGetIntCatchException(_FH_Climates), v); + } + + + /** indexed getter for Climates - gets an indexed value - Set of climate related keys and Value + * @generated + * @param i index in the array to get + * @return value of the element at index i + */ + @SuppressWarnings("unchecked") + public AnnotationComment getClimates(int i) { + return (AnnotationComment)(((FSArray)(_getFeatureValueNc(wrapGetIntCatchException(_FH_Climates)))).get(i)); + } + + /** indexed setter for Climates - sets an indexed value - Set of climate related keys and Value + * @generated + * @param i index in the array to set + * @param v value to set into the array + */ + @SuppressWarnings("unchecked") + public void setClimates(int i, AnnotationComment v) { + ((FSArray)(_getFeatureValueNc(wrapGetIntCatchException(_FH_Climates)))).set(i, v); + } + + + //*--------------* + //* Feature: ClimateType + + /** getter for ClimateType - gets Type of climate classification + * @generated + * @return value of the feature + */ + public String getClimateType() { + return _getStringValueNc(wrapGetIntCatchException(_FH_ClimateType)); + } + + /** setter for ClimateType - sets Type of climate classification + * @generated + * @param v value to set into the feature + */ + public void setClimateType(String v) { + _setStringValueNfc(wrapGetIntCatchException(_FH_ClimateType), v); + } + + + + //*--------------* + //* Feature: model + + /** getter for model - gets + * @generated + * @return value of the feature + */ + public MetaData getModel() { + return (MetaData)(_getFeatureValueNc(wrapGetIntCatchException(_FH_model))); + } + + /** setter for model - sets + * @generated + * @param v value to set into the feature + */ + public void setModel(MetaData v) { + _setFeatureValueNcWj(wrapGetIntCatchException(_FH_model), v); + } + + } + + \ No newline at end of file diff --git a/src/main/java/org/texttechnologylab/annotation/schema/AnnotationAttribute.java b/src/main/java/org/texttechnologylab/annotation/schema/AnnotationAttribute.java index 52760668..9e2ffeb9 100644 --- a/src/main/java/org/texttechnologylab/annotation/schema/AnnotationAttribute.java +++ b/src/main/java/org/texttechnologylab/annotation/schema/AnnotationAttribute.java @@ -1,25 +1,27 @@ -/* Apache UIMA v3 - First created by JCasGen Fri Jan 30 15:15:29 CET 2026 */ +/* Apache UIMA v3 - First created by JCasGen Thu May 28 13:54:25 CEST 2026 */ package org.texttechnologylab.annotation.schema; + +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.JCas; import org.apache.uima.jcas.JCasRegistry; -import org.apache.uima.jcas.cas.AnnotationBase; -import java.lang.invoke.CallSite; -import java.lang.invoke.MethodHandle; + +import org.apache.uima.jcas.cas.AnnotationBase; -/** - * Updated by JCasGen Fri Jan 30 15:15:29 CET 2026 - * XML source: /home/staff_homes/abrami/Projects/GitProjects/UIMATypeSystem/target/jcasgen/typesystem.xml +/** + * Updated by JCasGen Thu May 28 13:54:25 CEST 2026 + * XML source: /home/staff_homes/bagci/projects/UIMATypeSystem/target/jcasgen/typesystem.xml * @generated */ public class AnnotationAttribute extends AnnotationBase { diff --git a/src/main/java/org/texttechnologylab/annotation/schema/AnnotationClass.java b/src/main/java/org/texttechnologylab/annotation/schema/AnnotationClass.java index c44b4265..d0f99b36 100644 --- a/src/main/java/org/texttechnologylab/annotation/schema/AnnotationClass.java +++ b/src/main/java/org/texttechnologylab/annotation/schema/AnnotationClass.java @@ -1,26 +1,28 @@ -/* Apache UIMA v3 - First created by JCasGen Fri Jan 30 15:15:29 CET 2026 */ +/* Apache UIMA v3 - First created by JCasGen Thu May 28 13:54:25 CEST 2026 */ package org.texttechnologylab.annotation.schema; + +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.JCas; import org.apache.uima.jcas.JCasRegistry; -import org.apache.uima.jcas.cas.AnnotationBase; -import org.apache.uima.jcas.cas.FSArray; -import java.lang.invoke.CallSite; -import java.lang.invoke.MethodHandle; +import org.apache.uima.jcas.cas.FSArray; +import org.apache.uima.jcas.cas.AnnotationBase; -/** - * Updated by JCasGen Fri Jan 30 15:15:29 CET 2026 - * XML source: /home/staff_homes/abrami/Projects/GitProjects/UIMATypeSystem/target/jcasgen/typesystem.xml + +/** + * Updated by JCasGen Thu May 28 13:54:25 CEST 2026 + * XML source: /home/staff_homes/bagci/projects/UIMATypeSystem/target/jcasgen/typesystem.xml * @generated */ public class AnnotationClass extends AnnotationBase { @@ -151,8 +153,8 @@ public void setDescription(String v) { * @return value of the feature */ @SuppressWarnings("unchecked") - public FSArray getAttributes() { - return (FSArray) (_getFeatureValueNc(wrapGetIntCatchException(_FH_attributes))); + public FSArray getAttributes() { + return (FSArray)(_getFeatureValueNc(wrapGetIntCatchException(_FH_attributes))); } /** setter for attributes - sets @@ -161,32 +163,28 @@ public FSArray getAttributes() { */ public void setAttributes(FSArray v) { _setFeatureValueNcWj(wrapGetIntCatchException(_FH_attributes), v); - } - + } + + + /** indexed getter for attributes - gets an indexed value - + * @generated + * @param i index in the array to get + * @return value of the element at index i + */ + @SuppressWarnings("unchecked") + public Attribute getAttributes(int i) { + return (Attribute)(((FSArray)(_getFeatureValueNc(wrapGetIntCatchException(_FH_attributes)))).get(i)); + } - /** - * indexed getter for attributes - gets an indexed value - - * - * @param i index in the array to get - * @return value of the element at index i - * @generated - */ - @SuppressWarnings("unchecked") - public Attribute getAttributes(int i) { - return (Attribute) (((FSArray) (_getFeatureValueNc(wrapGetIntCatchException(_FH_attributes)))).get(i)); - } - - /** - * indexed setter for attributes - sets an indexed value - - * - * @param i index in the array to set - * @param v value to set into the array - * @generated - */ - @SuppressWarnings("unchecked") + /** indexed setter for attributes - sets an indexed value - + * @generated + * @param i index in the array to set + * @param v value to set into the array + */ + @SuppressWarnings("unchecked") public void setAttributes(int i, Attribute v) { - ((FSArray) (_getFeatureValueNc(wrapGetIntCatchException(_FH_attributes)))).set(i, v); - } + ((FSArray)(_getFeatureValueNc(wrapGetIntCatchException(_FH_attributes)))).set(i, v); + } } \ No newline at end of file diff --git a/src/main/java/org/texttechnologylab/annotation/schema/AnnotationObject.java b/src/main/java/org/texttechnologylab/annotation/schema/AnnotationObject.java index 0727e962..b9b30e06 100644 --- a/src/main/java/org/texttechnologylab/annotation/schema/AnnotationObject.java +++ b/src/main/java/org/texttechnologylab/annotation/schema/AnnotationObject.java @@ -1,26 +1,28 @@ -/* Apache UIMA v3 - First created by JCasGen Fri Jan 30 15:15:29 CET 2026 */ +/* Apache UIMA v3 - First created by JCasGen Thu May 28 13:54:25 CEST 2026 */ package org.texttechnologylab.annotation.schema; + +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.JCas; import org.apache.uima.jcas.JCasRegistry; + + import org.apache.uima.jcas.cas.FSArray; import org.apache.uima.jcas.tcas.Annotation; -import java.lang.invoke.CallSite; -import java.lang.invoke.MethodHandle; - -/** - * Updated by JCasGen Fri Jan 30 15:15:29 CET 2026 - * XML source: /home/staff_homes/abrami/Projects/GitProjects/UIMATypeSystem/target/jcasgen/typesystem.xml +/** + * Updated by JCasGen Thu May 28 13:54:25 CEST 2026 + * XML source: /home/staff_homes/bagci/projects/UIMATypeSystem/target/jcasgen/typesystem.xml * @generated */ public class AnnotationObject extends Annotation { @@ -163,8 +165,8 @@ public void setComment(String v) { * @return value of the feature */ @SuppressWarnings("unchecked") - public FSArray getAttributes() { - return (FSArray) (_getFeatureValueNc(wrapGetIntCatchException(_FH_attributes))); + public FSArray getAttributes() { + return (FSArray)(_getFeatureValueNc(wrapGetIntCatchException(_FH_attributes))); } /** setter for attributes - sets @@ -173,32 +175,28 @@ public FSArray getAttributes() { */ public void setAttributes(FSArray v) { _setFeatureValueNcWj(wrapGetIntCatchException(_FH_attributes), v); - } - + } + + + /** indexed getter for attributes - gets an indexed value - + * @generated + * @param i index in the array to get + * @return value of the element at index i + */ + @SuppressWarnings("unchecked") + public AnnotationAttribute getAttributes(int i) { + return (AnnotationAttribute)(((FSArray)(_getFeatureValueNc(wrapGetIntCatchException(_FH_attributes)))).get(i)); + } - /** - * indexed getter for attributes - gets an indexed value - - * - * @param i index in the array to get - * @return value of the element at index i - * @generated - */ - @SuppressWarnings("unchecked") - public AnnotationAttribute getAttributes(int i) { - return (AnnotationAttribute) (((FSArray) (_getFeatureValueNc(wrapGetIntCatchException(_FH_attributes)))).get(i)); - } - - /** - * indexed setter for attributes - sets an indexed value - - * - * @param i index in the array to set - * @param v value to set into the array - * @generated - */ - @SuppressWarnings("unchecked") + /** indexed setter for attributes - sets an indexed value - + * @generated + * @param i index in the array to set + * @param v value to set into the array + */ + @SuppressWarnings("unchecked") public void setAttributes(int i, AnnotationAttribute v) { - ((FSArray) (_getFeatureValueNc(wrapGetIntCatchException(_FH_attributes)))).set(i, v); - } + ((FSArray)(_getFeatureValueNc(wrapGetIntCatchException(_FH_attributes)))).set(i, v); + } } \ No newline at end of file diff --git a/src/main/java/org/texttechnologylab/annotation/schema/AnnotationRelation.java b/src/main/java/org/texttechnologylab/annotation/schema/AnnotationRelation.java index 818d81bb..7dac7e35 100644 --- a/src/main/java/org/texttechnologylab/annotation/schema/AnnotationRelation.java +++ b/src/main/java/org/texttechnologylab/annotation/schema/AnnotationRelation.java @@ -1,26 +1,28 @@ -/* Apache UIMA v3 - First created by JCasGen Fri Jan 30 15:15:29 CET 2026 */ +/* Apache UIMA v3 - First created by JCasGen Thu May 28 13:54:25 CEST 2026 */ package org.texttechnologylab.annotation.schema; + +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.JCas; import org.apache.uima.jcas.JCasRegistry; + + import org.apache.uima.jcas.cas.FSArray; import org.apache.uima.jcas.cas.TOP; -import java.lang.invoke.CallSite; -import java.lang.invoke.MethodHandle; - -/** - * Updated by JCasGen Fri Jan 30 15:15:29 CET 2026 - * XML source: /home/staff_homes/abrami/Projects/GitProjects/UIMATypeSystem/target/jcasgen/typesystem.xml +/** + * Updated by JCasGen Thu May 28 13:54:25 CEST 2026 + * XML source: /home/staff_homes/bagci/projects/UIMATypeSystem/target/jcasgen/typesystem.xml * @generated */ public class AnnotationRelation extends AnnotationAttribute { @@ -103,8 +105,8 @@ private void readObject() {/*default - does nothing empty block */} * @return value of the feature */ @SuppressWarnings("unchecked") - public FSArray getAttributes() { - return (FSArray) (_getFeatureValueNc(wrapGetIntCatchException(_FH_attributes))); + public FSArray getAttributes() { + return (FSArray)(_getFeatureValueNc(wrapGetIntCatchException(_FH_attributes))); } /** setter for attributes - sets @@ -113,32 +115,28 @@ public FSArray getAttributes() { */ public void setAttributes(FSArray v) { _setFeatureValueNcWj(wrapGetIntCatchException(_FH_attributes), v); - } - + } + + + /** indexed getter for attributes - gets an indexed value - + * @generated + * @param i index in the array to get + * @return value of the element at index i + */ + @SuppressWarnings("unchecked") + public TOP getAttributes(int i) { + return (TOP)(((FSArray)(_getFeatureValueNc(wrapGetIntCatchException(_FH_attributes)))).get(i)); + } - /** - * indexed getter for attributes - gets an indexed value - - * - * @param i index in the array to get - * @return value of the element at index i - * @generated - */ - @SuppressWarnings("unchecked") - public TOP getAttributes(int i) { - return (TOP) (((FSArray) (_getFeatureValueNc(wrapGetIntCatchException(_FH_attributes)))).get(i)); - } - - /** - * indexed setter for attributes - sets an indexed value - - * - * @param i index in the array to set - * @param v value to set into the array - * @generated - */ - @SuppressWarnings("unchecked") + /** indexed setter for attributes - sets an indexed value - + * @generated + * @param i index in the array to set + * @param v value to set into the array + */ + @SuppressWarnings("unchecked") public void setAttributes(int i, TOP v) { - ((FSArray) (_getFeatureValueNc(wrapGetIntCatchException(_FH_attributes)))).set(i, v); - } + ((FSArray)(_getFeatureValueNc(wrapGetIntCatchException(_FH_attributes)))).set(i, v); + } } \ No newline at end of file diff --git a/src/main/java/org/texttechnologylab/annotation/schema/Attribute.java b/src/main/java/org/texttechnologylab/annotation/schema/Attribute.java index 6bfaff3b..f0e87291 100644 --- a/src/main/java/org/texttechnologylab/annotation/schema/Attribute.java +++ b/src/main/java/org/texttechnologylab/annotation/schema/Attribute.java @@ -1,26 +1,28 @@ -/* Apache UIMA v3 - First created by JCasGen Fri Jan 30 15:15:29 CET 2026 */ +/* Apache UIMA v3 - First created by JCasGen Thu May 28 13:54:25 CEST 2026 */ package org.texttechnologylab.annotation.schema; + +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.JCas; import org.apache.uima.jcas.JCasRegistry; -import org.apache.uima.jcas.cas.AnnotationBase; -import org.apache.uima.jcas.cas.TOP; -import java.lang.invoke.CallSite; -import java.lang.invoke.MethodHandle; + +import org.apache.uima.jcas.cas.TOP; +import org.apache.uima.jcas.cas.AnnotationBase; -/** - * Updated by JCasGen Fri Jan 30 15:15:29 CET 2026 - * XML source: /home/staff_homes/abrami/Projects/GitProjects/UIMATypeSystem/target/jcasgen/typesystem.xml +/** + * Updated by JCasGen Thu May 28 13:54:25 CEST 2026 + * XML source: /home/staff_homes/bagci/projects/UIMATypeSystem/target/jcasgen/typesystem.xml * @generated */ public class Attribute extends AnnotationBase { diff --git a/src/main/java/org/texttechnologylab/annotation/schema/Relation.java b/src/main/java/org/texttechnologylab/annotation/schema/Relation.java index 5aecc117..783d0b44 100644 --- a/src/main/java/org/texttechnologylab/annotation/schema/Relation.java +++ b/src/main/java/org/texttechnologylab/annotation/schema/Relation.java @@ -1,26 +1,28 @@ -/* Apache UIMA v3 - First created by JCasGen Fri Jan 30 15:15:29 CET 2026 */ +/* Apache UIMA v3 - First created by JCasGen Thu May 28 13:54:25 CEST 2026 */ package org.texttechnologylab.annotation.schema; + +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.JCas; import org.apache.uima.jcas.JCasRegistry; + + import org.apache.uima.jcas.cas.FSArray; import org.apache.uima.jcas.cas.TOP; -import java.lang.invoke.CallSite; -import java.lang.invoke.MethodHandle; - -/** - * Updated by JCasGen Fri Jan 30 15:15:29 CET 2026 - * XML source: /home/staff_homes/abrami/Projects/GitProjects/UIMATypeSystem/target/jcasgen/typesystem.xml +/** + * Updated by JCasGen Thu May 28 13:54:25 CEST 2026 + * XML source: /home/staff_homes/bagci/projects/UIMATypeSystem/target/jcasgen/typesystem.xml * @generated */ public class Relation extends Attribute { @@ -103,8 +105,8 @@ private void readObject() {/*default - does nothing empty block */} * @return value of the feature */ @SuppressWarnings("unchecked") - public FSArray getAttributes() { - return (FSArray) (_getFeatureValueNc(wrapGetIntCatchException(_FH_attributes))); + public FSArray getAttributes() { + return (FSArray)(_getFeatureValueNc(wrapGetIntCatchException(_FH_attributes))); } /** setter for attributes - sets @@ -113,32 +115,28 @@ public FSArray getAttributes() { */ public void setAttributes(FSArray v) { _setFeatureValueNcWj(wrapGetIntCatchException(_FH_attributes), v); - } - + } + + + /** indexed getter for attributes - gets an indexed value - + * @generated + * @param i index in the array to get + * @return value of the element at index i + */ + @SuppressWarnings("unchecked") + public TOP getAttributes(int i) { + return (TOP)(((FSArray)(_getFeatureValueNc(wrapGetIntCatchException(_FH_attributes)))).get(i)); + } - /** - * indexed getter for attributes - gets an indexed value - - * - * @param i index in the array to get - * @return value of the element at index i - * @generated - */ - @SuppressWarnings("unchecked") - public TOP getAttributes(int i) { - return (TOP) (((FSArray) (_getFeatureValueNc(wrapGetIntCatchException(_FH_attributes)))).get(i)); - } - - /** - * indexed setter for attributes - sets an indexed value - - * - * @param i index in the array to set - * @param v value to set into the array - * @generated - */ - @SuppressWarnings("unchecked") + /** indexed setter for attributes - sets an indexed value - + * @generated + * @param i index in the array to set + * @param v value to set into the array + */ + @SuppressWarnings("unchecked") public void setAttributes(int i, TOP v) { - ((FSArray) (_getFeatureValueNc(wrapGetIntCatchException(_FH_attributes)))).set(i, v); - } + ((FSArray)(_getFeatureValueNc(wrapGetIntCatchException(_FH_attributes)))).set(i, v); + } } \ No newline at end of file diff --git a/src/main/resources/desc/type/TypeSystemClimate.xml b/src/main/resources/desc/type/TypeSystemClimate.xml new file mode 100644 index 00000000..9081c4cc --- /dev/null +++ b/src/main/resources/desc/type/TypeSystemClimate.xml @@ -0,0 +1,63 @@ + + + + TypeSystemClimate + + + + 1.0 + + + + + + + + + + + + + + org.texttechnologylab.annotation.Climate + + Climate Output + + uima.tcas.Annotation + + + + + Climates + + Set of climate related keys and Value + + uima.cas.FSArray + + org.texttechnologylab.annotation.AnnotationComment + + + + + + ClimateType + + Type of climate classification + + uima.cas.String + + + + + + model + + + + org.texttechnologylab.annotation.model.MetaData + + + + + +