You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by sc...@apache.org on 2008/05/27 17:14:03 UTC

svn commit: r660553 [5/10] - in /incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy: ./ src/ src/main/ src/main/descriptors/ src/main/groovy/ src/main/groovy/org/ src/main/groovy/org/apache/ src/main/groovy/org/apache/uima/ src/main/groovy/org/apac...

Added: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Organization.java
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Organization.java?rev=660553&view=auto
==============================================================================
--- incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Organization.java (added)
+++ incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Organization.java Tue May 27 08:13:37 2008
@@ -0,0 +1,72 @@
+
+
+/* First created by JCasGen Mon May 26 21:43:18 EDT 2008 */
+package org.apache.uima.calaisType.entity;
+
+import org.apache.uima.jcas.JCas; 
+import org.apache.uima.jcas.JCasRegistry;
+import org.apache.uima.jcas.cas.TOP_Type;
+
+import org.apache.uima.calaisType.Entity;
+
+
+/** 
+ * Updated by JCasGen Mon May 26 21:43:18 EDT 2008
+ * XML source: C:/a/Eclipse/3.3/apache/OpenCalaisAnnotatorGroovy/src/main/descriptors/CalaisTestCollectionReader.xml
+ * @generated */
+public class Organization extends Entity {
+  /** @generated
+   * @ordered 
+   */
+  public final static int typeIndexID = JCasRegistry.register(Organization.class);
+  /** @generated
+   * @ordered 
+   */
+  public final static int type = typeIndexID;
+  /** @generated  */
+  public              int getTypeIndexID() {return typeIndexID;}
+ 
+  /** Never called.  Disable default constructor
+   * @generated */
+  protected Organization() {}
+    
+  /** Internal - constructor used by generator 
+   * @generated */
+  public Organization(int addr, TOP_Type type) {
+    super(addr, type);
+    readObject();
+  }
+  
+  /** @generated */
+  public Organization(JCas jcas) {
+    super(jcas);
+    readObject();   
+  } 
+
+  /** <!-- begin-user-doc -->
+    * Write your own initialization here
+    * <!-- end-user-doc -->
+  @generated modifiable */
+  private void readObject() {}
+     
+ 
+    
+  //*--------------*
+  //* Feature: canonicalForm
+
+  /** getter for canonicalForm - gets 
+   * @generated */
+  public String getCanonicalForm() {
+    if (Organization_Type.featOkTst && ((Organization_Type)jcasType).casFeat_canonicalForm == null)
+      jcasType.jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.Organization");
+    return jcasType.ll_cas.ll_getStringValue(addr, ((Organization_Type)jcasType).casFeatCode_canonicalForm);}
+    
+  /** setter for canonicalForm - sets  
+   * @generated */
+  public void setCanonicalForm(String v) {
+    if (Organization_Type.featOkTst && ((Organization_Type)jcasType).casFeat_canonicalForm == null)
+      jcasType.jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.Organization");
+    jcasType.ll_cas.ll_setStringValue(addr, ((Organization_Type)jcasType).casFeatCode_canonicalForm, v);}    
+  }
+
+    
\ No newline at end of file

Propchange: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Organization.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Organization_Type.java
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Organization_Type.java?rev=660553&view=auto
==============================================================================
--- incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Organization_Type.java (added)
+++ incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Organization_Type.java Tue May 27 08:13:37 2008
@@ -0,0 +1,79 @@
+
+/* First created by JCasGen Mon May 26 21:43:18 EDT 2008 */
+package org.apache.uima.calaisType.entity;
+
+import org.apache.uima.jcas.JCas;
+import org.apache.uima.jcas.JCasRegistry;
+import org.apache.uima.cas.impl.CASImpl;
+import org.apache.uima.cas.impl.FSGenerator;
+import org.apache.uima.cas.FeatureStructure;
+import org.apache.uima.cas.impl.TypeImpl;
+import org.apache.uima.cas.Type;
+import org.apache.uima.cas.impl.FeatureImpl;
+import org.apache.uima.cas.Feature;
+import org.apache.uima.calaisType.Entity_Type;
+
+/** 
+ * Updated by JCasGen Mon May 26 21:43:18 EDT 2008
+ * @generated */
+public class Organization_Type extends Entity_Type {
+  /** @generated */
+  protected FSGenerator getFSGenerator() {return fsGenerator;}
+  /** @generated */
+  private final FSGenerator fsGenerator = 
+    new FSGenerator() {
+      public FeatureStructure createFS(int addr, CASImpl cas) {
+  			 if (Organization_Type.this.useExistingInstance) {
+  			   // Return eq fs instance if already created
+  		     FeatureStructure fs = Organization_Type.this.jcas.getJfsFromCaddr(addr);
+  		     if (null == fs) {
+  		       fs = new Organization(addr, Organization_Type.this);
+  			   Organization_Type.this.jcas.putJfsFromCaddr(addr, fs);
+  			   return fs;
+  		     }
+  		     return fs;
+        } else return new Organization(addr, Organization_Type.this);
+  	  }
+    };
+  /** @generated */
+  public final static int typeIndexID = Organization.typeIndexID;
+  /** @generated 
+     @modifiable */
+  public final static boolean featOkTst = JCasRegistry.getFeatOkTst("org.apache.uima.calaisType.entity.Organization");
+ 
+  /** @generated */
+  final Feature casFeat_canonicalForm;
+  /** @generated */
+  final int     casFeatCode_canonicalForm;
+  /** @generated */ 
+  public String getCanonicalForm(int addr) {
+        if (featOkTst && casFeat_canonicalForm == null)
+      jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.Organization");
+    return ll_cas.ll_getStringValue(addr, casFeatCode_canonicalForm);
+  }
+  /** @generated */    
+  public void setCanonicalForm(int addr, String v) {
+        if (featOkTst && casFeat_canonicalForm == null)
+      jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.Organization");
+    ll_cas.ll_setStringValue(addr, casFeatCode_canonicalForm, v);}
+    
+  
+
+
+
+  /** initialize variables to correspond with Cas Type and Features
+	* @generated */
+  public Organization_Type(JCas jcas, Type casType) {
+    super(jcas, casType);
+    casImpl.getFSClassRegistry().addGeneratorForType((TypeImpl)this.casType, getFSGenerator());
+
+ 
+    casFeat_canonicalForm = jcas.getRequiredFeatureDE(casType, "canonicalForm", "uima.cas.String", featOkTst);
+    casFeatCode_canonicalForm  = (null == casFeat_canonicalForm) ? JCas.INVALID_FEATURE_CODE : ((FeatureImpl)casFeat_canonicalForm).getCode();
+
+  }
+}
+
+
+
+    
\ No newline at end of file

Propchange: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Organization_Type.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Person.java
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Person.java?rev=660553&view=auto
==============================================================================
--- incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Person.java (added)
+++ incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Person.java Tue May 27 08:13:37 2008
@@ -0,0 +1,72 @@
+
+
+/* First created by JCasGen Mon May 26 21:43:18 EDT 2008 */
+package org.apache.uima.calaisType.entity;
+
+import org.apache.uima.jcas.JCas; 
+import org.apache.uima.jcas.JCasRegistry;
+import org.apache.uima.jcas.cas.TOP_Type;
+
+import org.apache.uima.calaisType.Entity;
+
+
+/** 
+ * Updated by JCasGen Mon May 26 21:43:18 EDT 2008
+ * XML source: C:/a/Eclipse/3.3/apache/OpenCalaisAnnotatorGroovy/src/main/descriptors/CalaisTestCollectionReader.xml
+ * @generated */
+public class Person extends Entity {
+  /** @generated
+   * @ordered 
+   */
+  public final static int typeIndexID = JCasRegistry.register(Person.class);
+  /** @generated
+   * @ordered 
+   */
+  public final static int type = typeIndexID;
+  /** @generated  */
+  public              int getTypeIndexID() {return typeIndexID;}
+ 
+  /** Never called.  Disable default constructor
+   * @generated */
+  protected Person() {}
+    
+  /** Internal - constructor used by generator 
+   * @generated */
+  public Person(int addr, TOP_Type type) {
+    super(addr, type);
+    readObject();
+  }
+  
+  /** @generated */
+  public Person(JCas jcas) {
+    super(jcas);
+    readObject();   
+  } 
+
+  /** <!-- begin-user-doc -->
+    * Write your own initialization here
+    * <!-- end-user-doc -->
+  @generated modifiable */
+  private void readObject() {}
+     
+ 
+    
+  //*--------------*
+  //* Feature: canonicalForm
+
+  /** getter for canonicalForm - gets 
+   * @generated */
+  public String getCanonicalForm() {
+    if (Person_Type.featOkTst && ((Person_Type)jcasType).casFeat_canonicalForm == null)
+      jcasType.jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.Person");
+    return jcasType.ll_cas.ll_getStringValue(addr, ((Person_Type)jcasType).casFeatCode_canonicalForm);}
+    
+  /** setter for canonicalForm - sets  
+   * @generated */
+  public void setCanonicalForm(String v) {
+    if (Person_Type.featOkTst && ((Person_Type)jcasType).casFeat_canonicalForm == null)
+      jcasType.jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.Person");
+    jcasType.ll_cas.ll_setStringValue(addr, ((Person_Type)jcasType).casFeatCode_canonicalForm, v);}    
+  }
+
+    
\ No newline at end of file

Propchange: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Person.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Person_Type.java
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Person_Type.java?rev=660553&view=auto
==============================================================================
--- incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Person_Type.java (added)
+++ incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Person_Type.java Tue May 27 08:13:37 2008
@@ -0,0 +1,79 @@
+
+/* First created by JCasGen Mon May 26 21:43:18 EDT 2008 */
+package org.apache.uima.calaisType.entity;
+
+import org.apache.uima.jcas.JCas;
+import org.apache.uima.jcas.JCasRegistry;
+import org.apache.uima.cas.impl.CASImpl;
+import org.apache.uima.cas.impl.FSGenerator;
+import org.apache.uima.cas.FeatureStructure;
+import org.apache.uima.cas.impl.TypeImpl;
+import org.apache.uima.cas.Type;
+import org.apache.uima.cas.impl.FeatureImpl;
+import org.apache.uima.cas.Feature;
+import org.apache.uima.calaisType.Entity_Type;
+
+/** 
+ * Updated by JCasGen Mon May 26 21:43:18 EDT 2008
+ * @generated */
+public class Person_Type extends Entity_Type {
+  /** @generated */
+  protected FSGenerator getFSGenerator() {return fsGenerator;}
+  /** @generated */
+  private final FSGenerator fsGenerator = 
+    new FSGenerator() {
+      public FeatureStructure createFS(int addr, CASImpl cas) {
+  			 if (Person_Type.this.useExistingInstance) {
+  			   // Return eq fs instance if already created
+  		     FeatureStructure fs = Person_Type.this.jcas.getJfsFromCaddr(addr);
+  		     if (null == fs) {
+  		       fs = new Person(addr, Person_Type.this);
+  			   Person_Type.this.jcas.putJfsFromCaddr(addr, fs);
+  			   return fs;
+  		     }
+  		     return fs;
+        } else return new Person(addr, Person_Type.this);
+  	  }
+    };
+  /** @generated */
+  public final static int typeIndexID = Person.typeIndexID;
+  /** @generated 
+     @modifiable */
+  public final static boolean featOkTst = JCasRegistry.getFeatOkTst("org.apache.uima.calaisType.entity.Person");
+ 
+  /** @generated */
+  final Feature casFeat_canonicalForm;
+  /** @generated */
+  final int     casFeatCode_canonicalForm;
+  /** @generated */ 
+  public String getCanonicalForm(int addr) {
+        if (featOkTst && casFeat_canonicalForm == null)
+      jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.Person");
+    return ll_cas.ll_getStringValue(addr, casFeatCode_canonicalForm);
+  }
+  /** @generated */    
+  public void setCanonicalForm(int addr, String v) {
+        if (featOkTst && casFeat_canonicalForm == null)
+      jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.Person");
+    ll_cas.ll_setStringValue(addr, casFeatCode_canonicalForm, v);}
+    
+  
+
+
+
+  /** initialize variables to correspond with Cas Type and Features
+	* @generated */
+  public Person_Type(JCas jcas, Type casType) {
+    super(jcas, casType);
+    casImpl.getFSClassRegistry().addGeneratorForType((TypeImpl)this.casType, getFSGenerator());
+
+ 
+    casFeat_canonicalForm = jcas.getRequiredFeatureDE(casType, "canonicalForm", "uima.cas.String", featOkTst);
+    casFeatCode_canonicalForm  = (null == casFeat_canonicalForm) ? JCas.INVALID_FEATURE_CODE : ((FeatureImpl)casFeat_canonicalForm).getCode();
+
+  }
+}
+
+
+
+    
\ No newline at end of file

Propchange: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Person_Type.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/PhoneNumber.java
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/PhoneNumber.java?rev=660553&view=auto
==============================================================================
--- incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/PhoneNumber.java (added)
+++ incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/PhoneNumber.java Tue May 27 08:13:37 2008
@@ -0,0 +1,72 @@
+
+
+/* First created by JCasGen Mon May 26 21:43:18 EDT 2008 */
+package org.apache.uima.calaisType.entity;
+
+import org.apache.uima.jcas.JCas; 
+import org.apache.uima.jcas.JCasRegistry;
+import org.apache.uima.jcas.cas.TOP_Type;
+
+import org.apache.uima.calaisType.Entity;
+
+
+/** 
+ * Updated by JCasGen Mon May 26 21:43:18 EDT 2008
+ * XML source: C:/a/Eclipse/3.3/apache/OpenCalaisAnnotatorGroovy/src/main/descriptors/CalaisTestCollectionReader.xml
+ * @generated */
+public class PhoneNumber extends Entity {
+  /** @generated
+   * @ordered 
+   */
+  public final static int typeIndexID = JCasRegistry.register(PhoneNumber.class);
+  /** @generated
+   * @ordered 
+   */
+  public final static int type = typeIndexID;
+  /** @generated  */
+  public              int getTypeIndexID() {return typeIndexID;}
+ 
+  /** Never called.  Disable default constructor
+   * @generated */
+  protected PhoneNumber() {}
+    
+  /** Internal - constructor used by generator 
+   * @generated */
+  public PhoneNumber(int addr, TOP_Type type) {
+    super(addr, type);
+    readObject();
+  }
+  
+  /** @generated */
+  public PhoneNumber(JCas jcas) {
+    super(jcas);
+    readObject();   
+  } 
+
+  /** <!-- begin-user-doc -->
+    * Write your own initialization here
+    * <!-- end-user-doc -->
+  @generated modifiable */
+  private void readObject() {}
+     
+ 
+    
+  //*--------------*
+  //* Feature: canonicalForm
+
+  /** getter for canonicalForm - gets 
+   * @generated */
+  public String getCanonicalForm() {
+    if (PhoneNumber_Type.featOkTst && ((PhoneNumber_Type)jcasType).casFeat_canonicalForm == null)
+      jcasType.jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.PhoneNumber");
+    return jcasType.ll_cas.ll_getStringValue(addr, ((PhoneNumber_Type)jcasType).casFeatCode_canonicalForm);}
+    
+  /** setter for canonicalForm - sets  
+   * @generated */
+  public void setCanonicalForm(String v) {
+    if (PhoneNumber_Type.featOkTst && ((PhoneNumber_Type)jcasType).casFeat_canonicalForm == null)
+      jcasType.jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.PhoneNumber");
+    jcasType.ll_cas.ll_setStringValue(addr, ((PhoneNumber_Type)jcasType).casFeatCode_canonicalForm, v);}    
+  }
+
+    
\ No newline at end of file

Propchange: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/PhoneNumber.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/PhoneNumber_Type.java
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/PhoneNumber_Type.java?rev=660553&view=auto
==============================================================================
--- incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/PhoneNumber_Type.java (added)
+++ incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/PhoneNumber_Type.java Tue May 27 08:13:37 2008
@@ -0,0 +1,79 @@
+
+/* First created by JCasGen Mon May 26 21:43:18 EDT 2008 */
+package org.apache.uima.calaisType.entity;
+
+import org.apache.uima.jcas.JCas;
+import org.apache.uima.jcas.JCasRegistry;
+import org.apache.uima.cas.impl.CASImpl;
+import org.apache.uima.cas.impl.FSGenerator;
+import org.apache.uima.cas.FeatureStructure;
+import org.apache.uima.cas.impl.TypeImpl;
+import org.apache.uima.cas.Type;
+import org.apache.uima.cas.impl.FeatureImpl;
+import org.apache.uima.cas.Feature;
+import org.apache.uima.calaisType.Entity_Type;
+
+/** 
+ * Updated by JCasGen Mon May 26 21:43:18 EDT 2008
+ * @generated */
+public class PhoneNumber_Type extends Entity_Type {
+  /** @generated */
+  protected FSGenerator getFSGenerator() {return fsGenerator;}
+  /** @generated */
+  private final FSGenerator fsGenerator = 
+    new FSGenerator() {
+      public FeatureStructure createFS(int addr, CASImpl cas) {
+  			 if (PhoneNumber_Type.this.useExistingInstance) {
+  			   // Return eq fs instance if already created
+  		     FeatureStructure fs = PhoneNumber_Type.this.jcas.getJfsFromCaddr(addr);
+  		     if (null == fs) {
+  		       fs = new PhoneNumber(addr, PhoneNumber_Type.this);
+  			   PhoneNumber_Type.this.jcas.putJfsFromCaddr(addr, fs);
+  			   return fs;
+  		     }
+  		     return fs;
+        } else return new PhoneNumber(addr, PhoneNumber_Type.this);
+  	  }
+    };
+  /** @generated */
+  public final static int typeIndexID = PhoneNumber.typeIndexID;
+  /** @generated 
+     @modifiable */
+  public final static boolean featOkTst = JCasRegistry.getFeatOkTst("org.apache.uima.calaisType.entity.PhoneNumber");
+ 
+  /** @generated */
+  final Feature casFeat_canonicalForm;
+  /** @generated */
+  final int     casFeatCode_canonicalForm;
+  /** @generated */ 
+  public String getCanonicalForm(int addr) {
+        if (featOkTst && casFeat_canonicalForm == null)
+      jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.PhoneNumber");
+    return ll_cas.ll_getStringValue(addr, casFeatCode_canonicalForm);
+  }
+  /** @generated */    
+  public void setCanonicalForm(int addr, String v) {
+        if (featOkTst && casFeat_canonicalForm == null)
+      jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.PhoneNumber");
+    ll_cas.ll_setStringValue(addr, casFeatCode_canonicalForm, v);}
+    
+  
+
+
+
+  /** initialize variables to correspond with Cas Type and Features
+	* @generated */
+  public PhoneNumber_Type(JCas jcas, Type casType) {
+    super(jcas, casType);
+    casImpl.getFSClassRegistry().addGeneratorForType((TypeImpl)this.casType, getFSGenerator());
+
+ 
+    casFeat_canonicalForm = jcas.getRequiredFeatureDE(casType, "canonicalForm", "uima.cas.String", featOkTst);
+    casFeatCode_canonicalForm  = (null == casFeat_canonicalForm) ? JCas.INVALID_FEATURE_CODE : ((FeatureImpl)casFeat_canonicalForm).getCode();
+
+  }
+}
+
+
+
+    
\ No newline at end of file

Propchange: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/PhoneNumber_Type.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Product.java
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Product.java?rev=660553&view=auto
==============================================================================
--- incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Product.java (added)
+++ incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Product.java Tue May 27 08:13:37 2008
@@ -0,0 +1,72 @@
+
+
+/* First created by JCasGen Mon May 26 21:43:18 EDT 2008 */
+package org.apache.uima.calaisType.entity;
+
+import org.apache.uima.jcas.JCas; 
+import org.apache.uima.jcas.JCasRegistry;
+import org.apache.uima.jcas.cas.TOP_Type;
+
+import org.apache.uima.calaisType.Entity;
+
+
+/** 
+ * Updated by JCasGen Mon May 26 21:43:18 EDT 2008
+ * XML source: C:/a/Eclipse/3.3/apache/OpenCalaisAnnotatorGroovy/src/main/descriptors/CalaisTestCollectionReader.xml
+ * @generated */
+public class Product extends Entity {
+  /** @generated
+   * @ordered 
+   */
+  public final static int typeIndexID = JCasRegistry.register(Product.class);
+  /** @generated
+   * @ordered 
+   */
+  public final static int type = typeIndexID;
+  /** @generated  */
+  public              int getTypeIndexID() {return typeIndexID;}
+ 
+  /** Never called.  Disable default constructor
+   * @generated */
+  protected Product() {}
+    
+  /** Internal - constructor used by generator 
+   * @generated */
+  public Product(int addr, TOP_Type type) {
+    super(addr, type);
+    readObject();
+  }
+  
+  /** @generated */
+  public Product(JCas jcas) {
+    super(jcas);
+    readObject();   
+  } 
+
+  /** <!-- begin-user-doc -->
+    * Write your own initialization here
+    * <!-- end-user-doc -->
+  @generated modifiable */
+  private void readObject() {}
+     
+ 
+    
+  //*--------------*
+  //* Feature: canonicalForm
+
+  /** getter for canonicalForm - gets 
+   * @generated */
+  public String getCanonicalForm() {
+    if (Product_Type.featOkTst && ((Product_Type)jcasType).casFeat_canonicalForm == null)
+      jcasType.jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.Product");
+    return jcasType.ll_cas.ll_getStringValue(addr, ((Product_Type)jcasType).casFeatCode_canonicalForm);}
+    
+  /** setter for canonicalForm - sets  
+   * @generated */
+  public void setCanonicalForm(String v) {
+    if (Product_Type.featOkTst && ((Product_Type)jcasType).casFeat_canonicalForm == null)
+      jcasType.jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.Product");
+    jcasType.ll_cas.ll_setStringValue(addr, ((Product_Type)jcasType).casFeatCode_canonicalForm, v);}    
+  }
+
+    
\ No newline at end of file

Propchange: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Product.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Product_Type.java
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Product_Type.java?rev=660553&view=auto
==============================================================================
--- incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Product_Type.java (added)
+++ incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Product_Type.java Tue May 27 08:13:37 2008
@@ -0,0 +1,79 @@
+
+/* First created by JCasGen Mon May 26 21:43:19 EDT 2008 */
+package org.apache.uima.calaisType.entity;
+
+import org.apache.uima.jcas.JCas;
+import org.apache.uima.jcas.JCasRegistry;
+import org.apache.uima.cas.impl.CASImpl;
+import org.apache.uima.cas.impl.FSGenerator;
+import org.apache.uima.cas.FeatureStructure;
+import org.apache.uima.cas.impl.TypeImpl;
+import org.apache.uima.cas.Type;
+import org.apache.uima.cas.impl.FeatureImpl;
+import org.apache.uima.cas.Feature;
+import org.apache.uima.calaisType.Entity_Type;
+
+/** 
+ * Updated by JCasGen Mon May 26 21:43:19 EDT 2008
+ * @generated */
+public class Product_Type extends Entity_Type {
+  /** @generated */
+  protected FSGenerator getFSGenerator() {return fsGenerator;}
+  /** @generated */
+  private final FSGenerator fsGenerator = 
+    new FSGenerator() {
+      public FeatureStructure createFS(int addr, CASImpl cas) {
+  			 if (Product_Type.this.useExistingInstance) {
+  			   // Return eq fs instance if already created
+  		     FeatureStructure fs = Product_Type.this.jcas.getJfsFromCaddr(addr);
+  		     if (null == fs) {
+  		       fs = new Product(addr, Product_Type.this);
+  			   Product_Type.this.jcas.putJfsFromCaddr(addr, fs);
+  			   return fs;
+  		     }
+  		     return fs;
+        } else return new Product(addr, Product_Type.this);
+  	  }
+    };
+  /** @generated */
+  public final static int typeIndexID = Product.typeIndexID;
+  /** @generated 
+     @modifiable */
+  public final static boolean featOkTst = JCasRegistry.getFeatOkTst("org.apache.uima.calaisType.entity.Product");
+ 
+  /** @generated */
+  final Feature casFeat_canonicalForm;
+  /** @generated */
+  final int     casFeatCode_canonicalForm;
+  /** @generated */ 
+  public String getCanonicalForm(int addr) {
+        if (featOkTst && casFeat_canonicalForm == null)
+      jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.Product");
+    return ll_cas.ll_getStringValue(addr, casFeatCode_canonicalForm);
+  }
+  /** @generated */    
+  public void setCanonicalForm(int addr, String v) {
+        if (featOkTst && casFeat_canonicalForm == null)
+      jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.Product");
+    ll_cas.ll_setStringValue(addr, casFeatCode_canonicalForm, v);}
+    
+  
+
+
+
+  /** initialize variables to correspond with Cas Type and Features
+	* @generated */
+  public Product_Type(JCas jcas, Type casType) {
+    super(jcas, casType);
+    casImpl.getFSClassRegistry().addGeneratorForType((TypeImpl)this.casType, getFSGenerator());
+
+ 
+    casFeat_canonicalForm = jcas.getRequiredFeatureDE(casType, "canonicalForm", "uima.cas.String", featOkTst);
+    casFeatCode_canonicalForm  = (null == casFeat_canonicalForm) ? JCas.INVALID_FEATURE_CODE : ((FeatureImpl)casFeat_canonicalForm).getCode();
+
+  }
+}
+
+
+
+    
\ No newline at end of file

Propchange: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Product_Type.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/ProvinceOrState.java
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/ProvinceOrState.java?rev=660553&view=auto
==============================================================================
--- incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/ProvinceOrState.java (added)
+++ incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/ProvinceOrState.java Tue May 27 08:13:37 2008
@@ -0,0 +1,72 @@
+
+
+/* First created by JCasGen Mon May 26 21:43:19 EDT 2008 */
+package org.apache.uima.calaisType.entity;
+
+import org.apache.uima.jcas.JCas; 
+import org.apache.uima.jcas.JCasRegistry;
+import org.apache.uima.jcas.cas.TOP_Type;
+
+import org.apache.uima.calaisType.Entity;
+
+
+/** 
+ * Updated by JCasGen Mon May 26 21:43:19 EDT 2008
+ * XML source: C:/a/Eclipse/3.3/apache/OpenCalaisAnnotatorGroovy/src/main/descriptors/CalaisTestCollectionReader.xml
+ * @generated */
+public class ProvinceOrState extends Entity {
+  /** @generated
+   * @ordered 
+   */
+  public final static int typeIndexID = JCasRegistry.register(ProvinceOrState.class);
+  /** @generated
+   * @ordered 
+   */
+  public final static int type = typeIndexID;
+  /** @generated  */
+  public              int getTypeIndexID() {return typeIndexID;}
+ 
+  /** Never called.  Disable default constructor
+   * @generated */
+  protected ProvinceOrState() {}
+    
+  /** Internal - constructor used by generator 
+   * @generated */
+  public ProvinceOrState(int addr, TOP_Type type) {
+    super(addr, type);
+    readObject();
+  }
+  
+  /** @generated */
+  public ProvinceOrState(JCas jcas) {
+    super(jcas);
+    readObject();   
+  } 
+
+  /** <!-- begin-user-doc -->
+    * Write your own initialization here
+    * <!-- end-user-doc -->
+  @generated modifiable */
+  private void readObject() {}
+     
+ 
+    
+  //*--------------*
+  //* Feature: canonicalForm
+
+  /** getter for canonicalForm - gets 
+   * @generated */
+  public String getCanonicalForm() {
+    if (ProvinceOrState_Type.featOkTst && ((ProvinceOrState_Type)jcasType).casFeat_canonicalForm == null)
+      jcasType.jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.ProvinceOrState");
+    return jcasType.ll_cas.ll_getStringValue(addr, ((ProvinceOrState_Type)jcasType).casFeatCode_canonicalForm);}
+    
+  /** setter for canonicalForm - sets  
+   * @generated */
+  public void setCanonicalForm(String v) {
+    if (ProvinceOrState_Type.featOkTst && ((ProvinceOrState_Type)jcasType).casFeat_canonicalForm == null)
+      jcasType.jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.ProvinceOrState");
+    jcasType.ll_cas.ll_setStringValue(addr, ((ProvinceOrState_Type)jcasType).casFeatCode_canonicalForm, v);}    
+  }
+
+    
\ No newline at end of file

Propchange: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/ProvinceOrState.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/ProvinceOrState_Type.java
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/ProvinceOrState_Type.java?rev=660553&view=auto
==============================================================================
--- incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/ProvinceOrState_Type.java (added)
+++ incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/ProvinceOrState_Type.java Tue May 27 08:13:37 2008
@@ -0,0 +1,79 @@
+
+/* First created by JCasGen Mon May 26 21:43:19 EDT 2008 */
+package org.apache.uima.calaisType.entity;
+
+import org.apache.uima.jcas.JCas;
+import org.apache.uima.jcas.JCasRegistry;
+import org.apache.uima.cas.impl.CASImpl;
+import org.apache.uima.cas.impl.FSGenerator;
+import org.apache.uima.cas.FeatureStructure;
+import org.apache.uima.cas.impl.TypeImpl;
+import org.apache.uima.cas.Type;
+import org.apache.uima.cas.impl.FeatureImpl;
+import org.apache.uima.cas.Feature;
+import org.apache.uima.calaisType.Entity_Type;
+
+/** 
+ * Updated by JCasGen Mon May 26 21:43:19 EDT 2008
+ * @generated */
+public class ProvinceOrState_Type extends Entity_Type {
+  /** @generated */
+  protected FSGenerator getFSGenerator() {return fsGenerator;}
+  /** @generated */
+  private final FSGenerator fsGenerator = 
+    new FSGenerator() {
+      public FeatureStructure createFS(int addr, CASImpl cas) {
+  			 if (ProvinceOrState_Type.this.useExistingInstance) {
+  			   // Return eq fs instance if already created
+  		     FeatureStructure fs = ProvinceOrState_Type.this.jcas.getJfsFromCaddr(addr);
+  		     if (null == fs) {
+  		       fs = new ProvinceOrState(addr, ProvinceOrState_Type.this);
+  			   ProvinceOrState_Type.this.jcas.putJfsFromCaddr(addr, fs);
+  			   return fs;
+  		     }
+  		     return fs;
+        } else return new ProvinceOrState(addr, ProvinceOrState_Type.this);
+  	  }
+    };
+  /** @generated */
+  public final static int typeIndexID = ProvinceOrState.typeIndexID;
+  /** @generated 
+     @modifiable */
+  public final static boolean featOkTst = JCasRegistry.getFeatOkTst("org.apache.uima.calaisType.entity.ProvinceOrState");
+ 
+  /** @generated */
+  final Feature casFeat_canonicalForm;
+  /** @generated */
+  final int     casFeatCode_canonicalForm;
+  /** @generated */ 
+  public String getCanonicalForm(int addr) {
+        if (featOkTst && casFeat_canonicalForm == null)
+      jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.ProvinceOrState");
+    return ll_cas.ll_getStringValue(addr, casFeatCode_canonicalForm);
+  }
+  /** @generated */    
+  public void setCanonicalForm(int addr, String v) {
+        if (featOkTst && casFeat_canonicalForm == null)
+      jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.ProvinceOrState");
+    ll_cas.ll_setStringValue(addr, casFeatCode_canonicalForm, v);}
+    
+  
+
+
+
+  /** initialize variables to correspond with Cas Type and Features
+	* @generated */
+  public ProvinceOrState_Type(JCas jcas, Type casType) {
+    super(jcas, casType);
+    casImpl.getFSClassRegistry().addGeneratorForType((TypeImpl)this.casType, getFSGenerator());
+
+ 
+    casFeat_canonicalForm = jcas.getRequiredFeatureDE(casType, "canonicalForm", "uima.cas.String", featOkTst);
+    casFeatCode_canonicalForm  = (null == casFeat_canonicalForm) ? JCas.INVALID_FEATURE_CODE : ((FeatureImpl)casFeat_canonicalForm).getCode();
+
+  }
+}
+
+
+
+    
\ No newline at end of file

Propchange: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/ProvinceOrState_Type.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/PublishedMedium.java
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/PublishedMedium.java?rev=660553&view=auto
==============================================================================
--- incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/PublishedMedium.java (added)
+++ incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/PublishedMedium.java Tue May 27 08:13:37 2008
@@ -0,0 +1,72 @@
+
+
+/* First created by JCasGen Mon May 26 21:43:19 EDT 2008 */
+package org.apache.uima.calaisType.entity;
+
+import org.apache.uima.jcas.JCas; 
+import org.apache.uima.jcas.JCasRegistry;
+import org.apache.uima.jcas.cas.TOP_Type;
+
+import org.apache.uima.calaisType.Entity;
+
+
+/** 
+ * Updated by JCasGen Mon May 26 21:43:19 EDT 2008
+ * XML source: C:/a/Eclipse/3.3/apache/OpenCalaisAnnotatorGroovy/src/main/descriptors/CalaisTestCollectionReader.xml
+ * @generated */
+public class PublishedMedium extends Entity {
+  /** @generated
+   * @ordered 
+   */
+  public final static int typeIndexID = JCasRegistry.register(PublishedMedium.class);
+  /** @generated
+   * @ordered 
+   */
+  public final static int type = typeIndexID;
+  /** @generated  */
+  public              int getTypeIndexID() {return typeIndexID;}
+ 
+  /** Never called.  Disable default constructor
+   * @generated */
+  protected PublishedMedium() {}
+    
+  /** Internal - constructor used by generator 
+   * @generated */
+  public PublishedMedium(int addr, TOP_Type type) {
+    super(addr, type);
+    readObject();
+  }
+  
+  /** @generated */
+  public PublishedMedium(JCas jcas) {
+    super(jcas);
+    readObject();   
+  } 
+
+  /** <!-- begin-user-doc -->
+    * Write your own initialization here
+    * <!-- end-user-doc -->
+  @generated modifiable */
+  private void readObject() {}
+     
+ 
+    
+  //*--------------*
+  //* Feature: canonicalForm
+
+  /** getter for canonicalForm - gets 
+   * @generated */
+  public String getCanonicalForm() {
+    if (PublishedMedium_Type.featOkTst && ((PublishedMedium_Type)jcasType).casFeat_canonicalForm == null)
+      jcasType.jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.PublishedMedium");
+    return jcasType.ll_cas.ll_getStringValue(addr, ((PublishedMedium_Type)jcasType).casFeatCode_canonicalForm);}
+    
+  /** setter for canonicalForm - sets  
+   * @generated */
+  public void setCanonicalForm(String v) {
+    if (PublishedMedium_Type.featOkTst && ((PublishedMedium_Type)jcasType).casFeat_canonicalForm == null)
+      jcasType.jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.PublishedMedium");
+    jcasType.ll_cas.ll_setStringValue(addr, ((PublishedMedium_Type)jcasType).casFeatCode_canonicalForm, v);}    
+  }
+
+    
\ No newline at end of file

Propchange: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/PublishedMedium.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/PublishedMedium_Type.java
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/PublishedMedium_Type.java?rev=660553&view=auto
==============================================================================
--- incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/PublishedMedium_Type.java (added)
+++ incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/PublishedMedium_Type.java Tue May 27 08:13:37 2008
@@ -0,0 +1,79 @@
+
+/* First created by JCasGen Mon May 26 21:43:19 EDT 2008 */
+package org.apache.uima.calaisType.entity;
+
+import org.apache.uima.jcas.JCas;
+import org.apache.uima.jcas.JCasRegistry;
+import org.apache.uima.cas.impl.CASImpl;
+import org.apache.uima.cas.impl.FSGenerator;
+import org.apache.uima.cas.FeatureStructure;
+import org.apache.uima.cas.impl.TypeImpl;
+import org.apache.uima.cas.Type;
+import org.apache.uima.cas.impl.FeatureImpl;
+import org.apache.uima.cas.Feature;
+import org.apache.uima.calaisType.Entity_Type;
+
+/** 
+ * Updated by JCasGen Mon May 26 21:43:19 EDT 2008
+ * @generated */
+public class PublishedMedium_Type extends Entity_Type {
+  /** @generated */
+  protected FSGenerator getFSGenerator() {return fsGenerator;}
+  /** @generated */
+  private final FSGenerator fsGenerator = 
+    new FSGenerator() {
+      public FeatureStructure createFS(int addr, CASImpl cas) {
+  			 if (PublishedMedium_Type.this.useExistingInstance) {
+  			   // Return eq fs instance if already created
+  		     FeatureStructure fs = PublishedMedium_Type.this.jcas.getJfsFromCaddr(addr);
+  		     if (null == fs) {
+  		       fs = new PublishedMedium(addr, PublishedMedium_Type.this);
+  			   PublishedMedium_Type.this.jcas.putJfsFromCaddr(addr, fs);
+  			   return fs;
+  		     }
+  		     return fs;
+        } else return new PublishedMedium(addr, PublishedMedium_Type.this);
+  	  }
+    };
+  /** @generated */
+  public final static int typeIndexID = PublishedMedium.typeIndexID;
+  /** @generated 
+     @modifiable */
+  public final static boolean featOkTst = JCasRegistry.getFeatOkTst("org.apache.uima.calaisType.entity.PublishedMedium");
+ 
+  /** @generated */
+  final Feature casFeat_canonicalForm;
+  /** @generated */
+  final int     casFeatCode_canonicalForm;
+  /** @generated */ 
+  public String getCanonicalForm(int addr) {
+        if (featOkTst && casFeat_canonicalForm == null)
+      jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.PublishedMedium");
+    return ll_cas.ll_getStringValue(addr, casFeatCode_canonicalForm);
+  }
+  /** @generated */    
+  public void setCanonicalForm(int addr, String v) {
+        if (featOkTst && casFeat_canonicalForm == null)
+      jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.PublishedMedium");
+    ll_cas.ll_setStringValue(addr, casFeatCode_canonicalForm, v);}
+    
+  
+
+
+
+  /** initialize variables to correspond with Cas Type and Features
+	* @generated */
+  public PublishedMedium_Type(JCas jcas, Type casType) {
+    super(jcas, casType);
+    casImpl.getFSClassRegistry().addGeneratorForType((TypeImpl)this.casType, getFSGenerator());
+
+ 
+    casFeat_canonicalForm = jcas.getRequiredFeatureDE(casType, "canonicalForm", "uima.cas.String", featOkTst);
+    casFeatCode_canonicalForm  = (null == casFeat_canonicalForm) ? JCas.INVALID_FEATURE_CODE : ((FeatureImpl)casFeat_canonicalForm).getCode();
+
+  }
+}
+
+
+
+    
\ No newline at end of file

Propchange: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/PublishedMedium_Type.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Region.java
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Region.java?rev=660553&view=auto
==============================================================================
--- incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Region.java (added)
+++ incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Region.java Tue May 27 08:13:37 2008
@@ -0,0 +1,72 @@
+
+
+/* First created by JCasGen Mon May 26 21:43:19 EDT 2008 */
+package org.apache.uima.calaisType.entity;
+
+import org.apache.uima.jcas.JCas; 
+import org.apache.uima.jcas.JCasRegistry;
+import org.apache.uima.jcas.cas.TOP_Type;
+
+import org.apache.uima.calaisType.Entity;
+
+
+/** 
+ * Updated by JCasGen Mon May 26 21:43:19 EDT 2008
+ * XML source: C:/a/Eclipse/3.3/apache/OpenCalaisAnnotatorGroovy/src/main/descriptors/CalaisTestCollectionReader.xml
+ * @generated */
+public class Region extends Entity {
+  /** @generated
+   * @ordered 
+   */
+  public final static int typeIndexID = JCasRegistry.register(Region.class);
+  /** @generated
+   * @ordered 
+   */
+  public final static int type = typeIndexID;
+  /** @generated  */
+  public              int getTypeIndexID() {return typeIndexID;}
+ 
+  /** Never called.  Disable default constructor
+   * @generated */
+  protected Region() {}
+    
+  /** Internal - constructor used by generator 
+   * @generated */
+  public Region(int addr, TOP_Type type) {
+    super(addr, type);
+    readObject();
+  }
+  
+  /** @generated */
+  public Region(JCas jcas) {
+    super(jcas);
+    readObject();   
+  } 
+
+  /** <!-- begin-user-doc -->
+    * Write your own initialization here
+    * <!-- end-user-doc -->
+  @generated modifiable */
+  private void readObject() {}
+     
+ 
+    
+  //*--------------*
+  //* Feature: canonicalForm
+
+  /** getter for canonicalForm - gets 
+   * @generated */
+  public String getCanonicalForm() {
+    if (Region_Type.featOkTst && ((Region_Type)jcasType).casFeat_canonicalForm == null)
+      jcasType.jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.Region");
+    return jcasType.ll_cas.ll_getStringValue(addr, ((Region_Type)jcasType).casFeatCode_canonicalForm);}
+    
+  /** setter for canonicalForm - sets  
+   * @generated */
+  public void setCanonicalForm(String v) {
+    if (Region_Type.featOkTst && ((Region_Type)jcasType).casFeat_canonicalForm == null)
+      jcasType.jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.Region");
+    jcasType.ll_cas.ll_setStringValue(addr, ((Region_Type)jcasType).casFeatCode_canonicalForm, v);}    
+  }
+
+    
\ No newline at end of file

Propchange: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Region.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Region_Type.java
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Region_Type.java?rev=660553&view=auto
==============================================================================
--- incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Region_Type.java (added)
+++ incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Region_Type.java Tue May 27 08:13:37 2008
@@ -0,0 +1,79 @@
+
+/* First created by JCasGen Mon May 26 21:43:19 EDT 2008 */
+package org.apache.uima.calaisType.entity;
+
+import org.apache.uima.jcas.JCas;
+import org.apache.uima.jcas.JCasRegistry;
+import org.apache.uima.cas.impl.CASImpl;
+import org.apache.uima.cas.impl.FSGenerator;
+import org.apache.uima.cas.FeatureStructure;
+import org.apache.uima.cas.impl.TypeImpl;
+import org.apache.uima.cas.Type;
+import org.apache.uima.cas.impl.FeatureImpl;
+import org.apache.uima.cas.Feature;
+import org.apache.uima.calaisType.Entity_Type;
+
+/** 
+ * Updated by JCasGen Mon May 26 21:43:19 EDT 2008
+ * @generated */
+public class Region_Type extends Entity_Type {
+  /** @generated */
+  protected FSGenerator getFSGenerator() {return fsGenerator;}
+  /** @generated */
+  private final FSGenerator fsGenerator = 
+    new FSGenerator() {
+      public FeatureStructure createFS(int addr, CASImpl cas) {
+  			 if (Region_Type.this.useExistingInstance) {
+  			   // Return eq fs instance if already created
+  		     FeatureStructure fs = Region_Type.this.jcas.getJfsFromCaddr(addr);
+  		     if (null == fs) {
+  		       fs = new Region(addr, Region_Type.this);
+  			   Region_Type.this.jcas.putJfsFromCaddr(addr, fs);
+  			   return fs;
+  		     }
+  		     return fs;
+        } else return new Region(addr, Region_Type.this);
+  	  }
+    };
+  /** @generated */
+  public final static int typeIndexID = Region.typeIndexID;
+  /** @generated 
+     @modifiable */
+  public final static boolean featOkTst = JCasRegistry.getFeatOkTst("org.apache.uima.calaisType.entity.Region");
+ 
+  /** @generated */
+  final Feature casFeat_canonicalForm;
+  /** @generated */
+  final int     casFeatCode_canonicalForm;
+  /** @generated */ 
+  public String getCanonicalForm(int addr) {
+        if (featOkTst && casFeat_canonicalForm == null)
+      jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.Region");
+    return ll_cas.ll_getStringValue(addr, casFeatCode_canonicalForm);
+  }
+  /** @generated */    
+  public void setCanonicalForm(int addr, String v) {
+        if (featOkTst && casFeat_canonicalForm == null)
+      jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.Region");
+    ll_cas.ll_setStringValue(addr, casFeatCode_canonicalForm, v);}
+    
+  
+
+
+
+  /** initialize variables to correspond with Cas Type and Features
+	* @generated */
+  public Region_Type(JCas jcas, Type casType) {
+    super(jcas, casType);
+    casImpl.getFSClassRegistry().addGeneratorForType((TypeImpl)this.casType, getFSGenerator());
+
+ 
+    casFeat_canonicalForm = jcas.getRequiredFeatureDE(casType, "canonicalForm", "uima.cas.String", featOkTst);
+    casFeatCode_canonicalForm  = (null == casFeat_canonicalForm) ? JCas.INVALID_FEATURE_CODE : ((FeatureImpl)casFeat_canonicalForm).getCode();
+
+  }
+}
+
+
+
+    
\ No newline at end of file

Propchange: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Region_Type.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/SportsEvent.java
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/SportsEvent.java?rev=660553&view=auto
==============================================================================
--- incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/SportsEvent.java (added)
+++ incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/SportsEvent.java Tue May 27 08:13:37 2008
@@ -0,0 +1,72 @@
+
+
+/* First created by JCasGen Mon May 26 21:43:19 EDT 2008 */
+package org.apache.uima.calaisType.entity;
+
+import org.apache.uima.jcas.JCas; 
+import org.apache.uima.jcas.JCasRegistry;
+import org.apache.uima.jcas.cas.TOP_Type;
+
+import org.apache.uima.calaisType.Entity;
+
+
+/** 
+ * Updated by JCasGen Mon May 26 21:43:19 EDT 2008
+ * XML source: C:/a/Eclipse/3.3/apache/OpenCalaisAnnotatorGroovy/src/main/descriptors/CalaisTestCollectionReader.xml
+ * @generated */
+public class SportsEvent extends Entity {
+  /** @generated
+   * @ordered 
+   */
+  public final static int typeIndexID = JCasRegistry.register(SportsEvent.class);
+  /** @generated
+   * @ordered 
+   */
+  public final static int type = typeIndexID;
+  /** @generated  */
+  public              int getTypeIndexID() {return typeIndexID;}
+ 
+  /** Never called.  Disable default constructor
+   * @generated */
+  protected SportsEvent() {}
+    
+  /** Internal - constructor used by generator 
+   * @generated */
+  public SportsEvent(int addr, TOP_Type type) {
+    super(addr, type);
+    readObject();
+  }
+  
+  /** @generated */
+  public SportsEvent(JCas jcas) {
+    super(jcas);
+    readObject();   
+  } 
+
+  /** <!-- begin-user-doc -->
+    * Write your own initialization here
+    * <!-- end-user-doc -->
+  @generated modifiable */
+  private void readObject() {}
+     
+ 
+    
+  //*--------------*
+  //* Feature: canonicalForm
+
+  /** getter for canonicalForm - gets 
+   * @generated */
+  public String getCanonicalForm() {
+    if (SportsEvent_Type.featOkTst && ((SportsEvent_Type)jcasType).casFeat_canonicalForm == null)
+      jcasType.jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.SportsEvent");
+    return jcasType.ll_cas.ll_getStringValue(addr, ((SportsEvent_Type)jcasType).casFeatCode_canonicalForm);}
+    
+  /** setter for canonicalForm - sets  
+   * @generated */
+  public void setCanonicalForm(String v) {
+    if (SportsEvent_Type.featOkTst && ((SportsEvent_Type)jcasType).casFeat_canonicalForm == null)
+      jcasType.jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.SportsEvent");
+    jcasType.ll_cas.ll_setStringValue(addr, ((SportsEvent_Type)jcasType).casFeatCode_canonicalForm, v);}    
+  }
+
+    
\ No newline at end of file

Propchange: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/SportsEvent.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/SportsEvent_Type.java
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/SportsEvent_Type.java?rev=660553&view=auto
==============================================================================
--- incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/SportsEvent_Type.java (added)
+++ incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/SportsEvent_Type.java Tue May 27 08:13:37 2008
@@ -0,0 +1,79 @@
+
+/* First created by JCasGen Mon May 26 21:43:19 EDT 2008 */
+package org.apache.uima.calaisType.entity;
+
+import org.apache.uima.jcas.JCas;
+import org.apache.uima.jcas.JCasRegistry;
+import org.apache.uima.cas.impl.CASImpl;
+import org.apache.uima.cas.impl.FSGenerator;
+import org.apache.uima.cas.FeatureStructure;
+import org.apache.uima.cas.impl.TypeImpl;
+import org.apache.uima.cas.Type;
+import org.apache.uima.cas.impl.FeatureImpl;
+import org.apache.uima.cas.Feature;
+import org.apache.uima.calaisType.Entity_Type;
+
+/** 
+ * Updated by JCasGen Mon May 26 21:43:19 EDT 2008
+ * @generated */
+public class SportsEvent_Type extends Entity_Type {
+  /** @generated */
+  protected FSGenerator getFSGenerator() {return fsGenerator;}
+  /** @generated */
+  private final FSGenerator fsGenerator = 
+    new FSGenerator() {
+      public FeatureStructure createFS(int addr, CASImpl cas) {
+  			 if (SportsEvent_Type.this.useExistingInstance) {
+  			   // Return eq fs instance if already created
+  		     FeatureStructure fs = SportsEvent_Type.this.jcas.getJfsFromCaddr(addr);
+  		     if (null == fs) {
+  		       fs = new SportsEvent(addr, SportsEvent_Type.this);
+  			   SportsEvent_Type.this.jcas.putJfsFromCaddr(addr, fs);
+  			   return fs;
+  		     }
+  		     return fs;
+        } else return new SportsEvent(addr, SportsEvent_Type.this);
+  	  }
+    };
+  /** @generated */
+  public final static int typeIndexID = SportsEvent.typeIndexID;
+  /** @generated 
+     @modifiable */
+  public final static boolean featOkTst = JCasRegistry.getFeatOkTst("org.apache.uima.calaisType.entity.SportsEvent");
+ 
+  /** @generated */
+  final Feature casFeat_canonicalForm;
+  /** @generated */
+  final int     casFeatCode_canonicalForm;
+  /** @generated */ 
+  public String getCanonicalForm(int addr) {
+        if (featOkTst && casFeat_canonicalForm == null)
+      jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.SportsEvent");
+    return ll_cas.ll_getStringValue(addr, casFeatCode_canonicalForm);
+  }
+  /** @generated */    
+  public void setCanonicalForm(int addr, String v) {
+        if (featOkTst && casFeat_canonicalForm == null)
+      jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.SportsEvent");
+    ll_cas.ll_setStringValue(addr, casFeatCode_canonicalForm, v);}
+    
+  
+
+
+
+  /** initialize variables to correspond with Cas Type and Features
+	* @generated */
+  public SportsEvent_Type(JCas jcas, Type casType) {
+    super(jcas, casType);
+    casImpl.getFSClassRegistry().addGeneratorForType((TypeImpl)this.casType, getFSGenerator());
+
+ 
+    casFeat_canonicalForm = jcas.getRequiredFeatureDE(casType, "canonicalForm", "uima.cas.String", featOkTst);
+    casFeatCode_canonicalForm  = (null == casFeat_canonicalForm) ? JCas.INVALID_FEATURE_CODE : ((FeatureImpl)casFeat_canonicalForm).getCode();
+
+  }
+}
+
+
+
+    
\ No newline at end of file

Propchange: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/SportsEvent_Type.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/SportsGame.java
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/SportsGame.java?rev=660553&view=auto
==============================================================================
--- incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/SportsGame.java (added)
+++ incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/SportsGame.java Tue May 27 08:13:37 2008
@@ -0,0 +1,72 @@
+
+
+/* First created by JCasGen Mon May 26 21:43:19 EDT 2008 */
+package org.apache.uima.calaisType.entity;
+
+import org.apache.uima.jcas.JCas; 
+import org.apache.uima.jcas.JCasRegistry;
+import org.apache.uima.jcas.cas.TOP_Type;
+
+import org.apache.uima.calaisType.Entity;
+
+
+/** 
+ * Updated by JCasGen Mon May 26 21:43:19 EDT 2008
+ * XML source: C:/a/Eclipse/3.3/apache/OpenCalaisAnnotatorGroovy/src/main/descriptors/CalaisTestCollectionReader.xml
+ * @generated */
+public class SportsGame extends Entity {
+  /** @generated
+   * @ordered 
+   */
+  public final static int typeIndexID = JCasRegistry.register(SportsGame.class);
+  /** @generated
+   * @ordered 
+   */
+  public final static int type = typeIndexID;
+  /** @generated  */
+  public              int getTypeIndexID() {return typeIndexID;}
+ 
+  /** Never called.  Disable default constructor
+   * @generated */
+  protected SportsGame() {}
+    
+  /** Internal - constructor used by generator 
+   * @generated */
+  public SportsGame(int addr, TOP_Type type) {
+    super(addr, type);
+    readObject();
+  }
+  
+  /** @generated */
+  public SportsGame(JCas jcas) {
+    super(jcas);
+    readObject();   
+  } 
+
+  /** <!-- begin-user-doc -->
+    * Write your own initialization here
+    * <!-- end-user-doc -->
+  @generated modifiable */
+  private void readObject() {}
+     
+ 
+    
+  //*--------------*
+  //* Feature: canonicalForm
+
+  /** getter for canonicalForm - gets 
+   * @generated */
+  public String getCanonicalForm() {
+    if (SportsGame_Type.featOkTst && ((SportsGame_Type)jcasType).casFeat_canonicalForm == null)
+      jcasType.jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.SportsGame");
+    return jcasType.ll_cas.ll_getStringValue(addr, ((SportsGame_Type)jcasType).casFeatCode_canonicalForm);}
+    
+  /** setter for canonicalForm - sets  
+   * @generated */
+  public void setCanonicalForm(String v) {
+    if (SportsGame_Type.featOkTst && ((SportsGame_Type)jcasType).casFeat_canonicalForm == null)
+      jcasType.jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.SportsGame");
+    jcasType.ll_cas.ll_setStringValue(addr, ((SportsGame_Type)jcasType).casFeatCode_canonicalForm, v);}    
+  }
+
+    
\ No newline at end of file

Propchange: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/SportsGame.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/SportsGame_Type.java
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/SportsGame_Type.java?rev=660553&view=auto
==============================================================================
--- incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/SportsGame_Type.java (added)
+++ incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/SportsGame_Type.java Tue May 27 08:13:37 2008
@@ -0,0 +1,79 @@
+
+/* First created by JCasGen Mon May 26 21:43:19 EDT 2008 */
+package org.apache.uima.calaisType.entity;
+
+import org.apache.uima.jcas.JCas;
+import org.apache.uima.jcas.JCasRegistry;
+import org.apache.uima.cas.impl.CASImpl;
+import org.apache.uima.cas.impl.FSGenerator;
+import org.apache.uima.cas.FeatureStructure;
+import org.apache.uima.cas.impl.TypeImpl;
+import org.apache.uima.cas.Type;
+import org.apache.uima.cas.impl.FeatureImpl;
+import org.apache.uima.cas.Feature;
+import org.apache.uima.calaisType.Entity_Type;
+
+/** 
+ * Updated by JCasGen Mon May 26 21:43:19 EDT 2008
+ * @generated */
+public class SportsGame_Type extends Entity_Type {
+  /** @generated */
+  protected FSGenerator getFSGenerator() {return fsGenerator;}
+  /** @generated */
+  private final FSGenerator fsGenerator = 
+    new FSGenerator() {
+      public FeatureStructure createFS(int addr, CASImpl cas) {
+  			 if (SportsGame_Type.this.useExistingInstance) {
+  			   // Return eq fs instance if already created
+  		     FeatureStructure fs = SportsGame_Type.this.jcas.getJfsFromCaddr(addr);
+  		     if (null == fs) {
+  		       fs = new SportsGame(addr, SportsGame_Type.this);
+  			   SportsGame_Type.this.jcas.putJfsFromCaddr(addr, fs);
+  			   return fs;
+  		     }
+  		     return fs;
+        } else return new SportsGame(addr, SportsGame_Type.this);
+  	  }
+    };
+  /** @generated */
+  public final static int typeIndexID = SportsGame.typeIndexID;
+  /** @generated 
+     @modifiable */
+  public final static boolean featOkTst = JCasRegistry.getFeatOkTst("org.apache.uima.calaisType.entity.SportsGame");
+ 
+  /** @generated */
+  final Feature casFeat_canonicalForm;
+  /** @generated */
+  final int     casFeatCode_canonicalForm;
+  /** @generated */ 
+  public String getCanonicalForm(int addr) {
+        if (featOkTst && casFeat_canonicalForm == null)
+      jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.SportsGame");
+    return ll_cas.ll_getStringValue(addr, casFeatCode_canonicalForm);
+  }
+  /** @generated */    
+  public void setCanonicalForm(int addr, String v) {
+        if (featOkTst && casFeat_canonicalForm == null)
+      jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.SportsGame");
+    ll_cas.ll_setStringValue(addr, casFeatCode_canonicalForm, v);}
+    
+  
+
+
+
+  /** initialize variables to correspond with Cas Type and Features
+	* @generated */
+  public SportsGame_Type(JCas jcas, Type casType) {
+    super(jcas, casType);
+    casImpl.getFSClassRegistry().addGeneratorForType((TypeImpl)this.casType, getFSGenerator());
+
+ 
+    casFeat_canonicalForm = jcas.getRequiredFeatureDE(casType, "canonicalForm", "uima.cas.String", featOkTst);
+    casFeatCode_canonicalForm  = (null == casFeat_canonicalForm) ? JCas.INVALID_FEATURE_CODE : ((FeatureImpl)casFeat_canonicalForm).getCode();
+
+  }
+}
+
+
+
+    
\ No newline at end of file

Propchange: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/SportsGame_Type.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/TVShow.java
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/TVShow.java?rev=660553&view=auto
==============================================================================
--- incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/TVShow.java (added)
+++ incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/TVShow.java Tue May 27 08:13:37 2008
@@ -0,0 +1,72 @@
+
+
+/* First created by JCasGen Mon May 26 21:43:19 EDT 2008 */
+package org.apache.uima.calaisType.entity;
+
+import org.apache.uima.jcas.JCas; 
+import org.apache.uima.jcas.JCasRegistry;
+import org.apache.uima.jcas.cas.TOP_Type;
+
+import org.apache.uima.calaisType.Entity;
+
+
+/** 
+ * Updated by JCasGen Mon May 26 21:43:19 EDT 2008
+ * XML source: C:/a/Eclipse/3.3/apache/OpenCalaisAnnotatorGroovy/src/main/descriptors/CalaisTestCollectionReader.xml
+ * @generated */
+public class TVShow extends Entity {
+  /** @generated
+   * @ordered 
+   */
+  public final static int typeIndexID = JCasRegistry.register(TVShow.class);
+  /** @generated
+   * @ordered 
+   */
+  public final static int type = typeIndexID;
+  /** @generated  */
+  public              int getTypeIndexID() {return typeIndexID;}
+ 
+  /** Never called.  Disable default constructor
+   * @generated */
+  protected TVShow() {}
+    
+  /** Internal - constructor used by generator 
+   * @generated */
+  public TVShow(int addr, TOP_Type type) {
+    super(addr, type);
+    readObject();
+  }
+  
+  /** @generated */
+  public TVShow(JCas jcas) {
+    super(jcas);
+    readObject();   
+  } 
+
+  /** <!-- begin-user-doc -->
+    * Write your own initialization here
+    * <!-- end-user-doc -->
+  @generated modifiable */
+  private void readObject() {}
+     
+ 
+    
+  //*--------------*
+  //* Feature: canonicalForm
+
+  /** getter for canonicalForm - gets 
+   * @generated */
+  public String getCanonicalForm() {
+    if (TVShow_Type.featOkTst && ((TVShow_Type)jcasType).casFeat_canonicalForm == null)
+      jcasType.jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.TVShow");
+    return jcasType.ll_cas.ll_getStringValue(addr, ((TVShow_Type)jcasType).casFeatCode_canonicalForm);}
+    
+  /** setter for canonicalForm - sets  
+   * @generated */
+  public void setCanonicalForm(String v) {
+    if (TVShow_Type.featOkTst && ((TVShow_Type)jcasType).casFeat_canonicalForm == null)
+      jcasType.jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.TVShow");
+    jcasType.ll_cas.ll_setStringValue(addr, ((TVShow_Type)jcasType).casFeatCode_canonicalForm, v);}    
+  }
+
+    
\ No newline at end of file

Propchange: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/TVShow.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/TVShow_Type.java
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/TVShow_Type.java?rev=660553&view=auto
==============================================================================
--- incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/TVShow_Type.java (added)
+++ incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/TVShow_Type.java Tue May 27 08:13:37 2008
@@ -0,0 +1,79 @@
+
+/* First created by JCasGen Mon May 26 21:43:19 EDT 2008 */
+package org.apache.uima.calaisType.entity;
+
+import org.apache.uima.jcas.JCas;
+import org.apache.uima.jcas.JCasRegistry;
+import org.apache.uima.cas.impl.CASImpl;
+import org.apache.uima.cas.impl.FSGenerator;
+import org.apache.uima.cas.FeatureStructure;
+import org.apache.uima.cas.impl.TypeImpl;
+import org.apache.uima.cas.Type;
+import org.apache.uima.cas.impl.FeatureImpl;
+import org.apache.uima.cas.Feature;
+import org.apache.uima.calaisType.Entity_Type;
+
+/** 
+ * Updated by JCasGen Mon May 26 21:43:19 EDT 2008
+ * @generated */
+public class TVShow_Type extends Entity_Type {
+  /** @generated */
+  protected FSGenerator getFSGenerator() {return fsGenerator;}
+  /** @generated */
+  private final FSGenerator fsGenerator = 
+    new FSGenerator() {
+      public FeatureStructure createFS(int addr, CASImpl cas) {
+  			 if (TVShow_Type.this.useExistingInstance) {
+  			   // Return eq fs instance if already created
+  		     FeatureStructure fs = TVShow_Type.this.jcas.getJfsFromCaddr(addr);
+  		     if (null == fs) {
+  		       fs = new TVShow(addr, TVShow_Type.this);
+  			   TVShow_Type.this.jcas.putJfsFromCaddr(addr, fs);
+  			   return fs;
+  		     }
+  		     return fs;
+        } else return new TVShow(addr, TVShow_Type.this);
+  	  }
+    };
+  /** @generated */
+  public final static int typeIndexID = TVShow.typeIndexID;
+  /** @generated 
+     @modifiable */
+  public final static boolean featOkTst = JCasRegistry.getFeatOkTst("org.apache.uima.calaisType.entity.TVShow");
+ 
+  /** @generated */
+  final Feature casFeat_canonicalForm;
+  /** @generated */
+  final int     casFeatCode_canonicalForm;
+  /** @generated */ 
+  public String getCanonicalForm(int addr) {
+        if (featOkTst && casFeat_canonicalForm == null)
+      jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.TVShow");
+    return ll_cas.ll_getStringValue(addr, casFeatCode_canonicalForm);
+  }
+  /** @generated */    
+  public void setCanonicalForm(int addr, String v) {
+        if (featOkTst && casFeat_canonicalForm == null)
+      jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.TVShow");
+    ll_cas.ll_setStringValue(addr, casFeatCode_canonicalForm, v);}
+    
+  
+
+
+
+  /** initialize variables to correspond with Cas Type and Features
+	* @generated */
+  public TVShow_Type(JCas jcas, Type casType) {
+    super(jcas, casType);
+    casImpl.getFSClassRegistry().addGeneratorForType((TypeImpl)this.casType, getFSGenerator());
+
+ 
+    casFeat_canonicalForm = jcas.getRequiredFeatureDE(casType, "canonicalForm", "uima.cas.String", featOkTst);
+    casFeatCode_canonicalForm  = (null == casFeat_canonicalForm) ? JCas.INVALID_FEATURE_CODE : ((FeatureImpl)casFeat_canonicalForm).getCode();
+
+  }
+}
+
+
+
+    
\ No newline at end of file

Propchange: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/TVShow_Type.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Technology.java
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Technology.java?rev=660553&view=auto
==============================================================================
--- incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Technology.java (added)
+++ incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Technology.java Tue May 27 08:13:37 2008
@@ -0,0 +1,72 @@
+
+
+/* First created by JCasGen Mon May 26 21:43:19 EDT 2008 */
+package org.apache.uima.calaisType.entity;
+
+import org.apache.uima.jcas.JCas; 
+import org.apache.uima.jcas.JCasRegistry;
+import org.apache.uima.jcas.cas.TOP_Type;
+
+import org.apache.uima.calaisType.Entity;
+
+
+/** 
+ * Updated by JCasGen Mon May 26 21:43:19 EDT 2008
+ * XML source: C:/a/Eclipse/3.3/apache/OpenCalaisAnnotatorGroovy/src/main/descriptors/CalaisTestCollectionReader.xml
+ * @generated */
+public class Technology extends Entity {
+  /** @generated
+   * @ordered 
+   */
+  public final static int typeIndexID = JCasRegistry.register(Technology.class);
+  /** @generated
+   * @ordered 
+   */
+  public final static int type = typeIndexID;
+  /** @generated  */
+  public              int getTypeIndexID() {return typeIndexID;}
+ 
+  /** Never called.  Disable default constructor
+   * @generated */
+  protected Technology() {}
+    
+  /** Internal - constructor used by generator 
+   * @generated */
+  public Technology(int addr, TOP_Type type) {
+    super(addr, type);
+    readObject();
+  }
+  
+  /** @generated */
+  public Technology(JCas jcas) {
+    super(jcas);
+    readObject();   
+  } 
+
+  /** <!-- begin-user-doc -->
+    * Write your own initialization here
+    * <!-- end-user-doc -->
+  @generated modifiable */
+  private void readObject() {}
+     
+ 
+    
+  //*--------------*
+  //* Feature: canonicalForm
+
+  /** getter for canonicalForm - gets 
+   * @generated */
+  public String getCanonicalForm() {
+    if (Technology_Type.featOkTst && ((Technology_Type)jcasType).casFeat_canonicalForm == null)
+      jcasType.jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.Technology");
+    return jcasType.ll_cas.ll_getStringValue(addr, ((Technology_Type)jcasType).casFeatCode_canonicalForm);}
+    
+  /** setter for canonicalForm - sets  
+   * @generated */
+  public void setCanonicalForm(String v) {
+    if (Technology_Type.featOkTst && ((Technology_Type)jcasType).casFeat_canonicalForm == null)
+      jcasType.jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.Technology");
+    jcasType.ll_cas.ll_setStringValue(addr, ((Technology_Type)jcasType).casFeatCode_canonicalForm, v);}    
+  }
+
+    
\ No newline at end of file

Propchange: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Technology.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Technology_Type.java
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Technology_Type.java?rev=660553&view=auto
==============================================================================
--- incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Technology_Type.java (added)
+++ incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Technology_Type.java Tue May 27 08:13:37 2008
@@ -0,0 +1,79 @@
+
+/* First created by JCasGen Mon May 26 21:43:19 EDT 2008 */
+package org.apache.uima.calaisType.entity;
+
+import org.apache.uima.jcas.JCas;
+import org.apache.uima.jcas.JCasRegistry;
+import org.apache.uima.cas.impl.CASImpl;
+import org.apache.uima.cas.impl.FSGenerator;
+import org.apache.uima.cas.FeatureStructure;
+import org.apache.uima.cas.impl.TypeImpl;
+import org.apache.uima.cas.Type;
+import org.apache.uima.cas.impl.FeatureImpl;
+import org.apache.uima.cas.Feature;
+import org.apache.uima.calaisType.Entity_Type;
+
+/** 
+ * Updated by JCasGen Mon May 26 21:43:19 EDT 2008
+ * @generated */
+public class Technology_Type extends Entity_Type {
+  /** @generated */
+  protected FSGenerator getFSGenerator() {return fsGenerator;}
+  /** @generated */
+  private final FSGenerator fsGenerator = 
+    new FSGenerator() {
+      public FeatureStructure createFS(int addr, CASImpl cas) {
+  			 if (Technology_Type.this.useExistingInstance) {
+  			   // Return eq fs instance if already created
+  		     FeatureStructure fs = Technology_Type.this.jcas.getJfsFromCaddr(addr);
+  		     if (null == fs) {
+  		       fs = new Technology(addr, Technology_Type.this);
+  			   Technology_Type.this.jcas.putJfsFromCaddr(addr, fs);
+  			   return fs;
+  		     }
+  		     return fs;
+        } else return new Technology(addr, Technology_Type.this);
+  	  }
+    };
+  /** @generated */
+  public final static int typeIndexID = Technology.typeIndexID;
+  /** @generated 
+     @modifiable */
+  public final static boolean featOkTst = JCasRegistry.getFeatOkTst("org.apache.uima.calaisType.entity.Technology");
+ 
+  /** @generated */
+  final Feature casFeat_canonicalForm;
+  /** @generated */
+  final int     casFeatCode_canonicalForm;
+  /** @generated */ 
+  public String getCanonicalForm(int addr) {
+        if (featOkTst && casFeat_canonicalForm == null)
+      jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.Technology");
+    return ll_cas.ll_getStringValue(addr, casFeatCode_canonicalForm);
+  }
+  /** @generated */    
+  public void setCanonicalForm(int addr, String v) {
+        if (featOkTst && casFeat_canonicalForm == null)
+      jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.Technology");
+    ll_cas.ll_setStringValue(addr, casFeatCode_canonicalForm, v);}
+    
+  
+
+
+
+  /** initialize variables to correspond with Cas Type and Features
+	* @generated */
+  public Technology_Type(JCas jcas, Type casType) {
+    super(jcas, casType);
+    casImpl.getFSClassRegistry().addGeneratorForType((TypeImpl)this.casType, getFSGenerator());
+
+ 
+    casFeat_canonicalForm = jcas.getRequiredFeatureDE(casType, "canonicalForm", "uima.cas.String", featOkTst);
+    casFeatCode_canonicalForm  = (null == casFeat_canonicalForm) ? JCas.INVALID_FEATURE_CODE : ((FeatureImpl)casFeat_canonicalForm).getCode();
+
+  }
+}
+
+
+
+    
\ No newline at end of file

Propchange: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/Technology_Type.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/URL.java
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/URL.java?rev=660553&view=auto
==============================================================================
--- incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/URL.java (added)
+++ incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/URL.java Tue May 27 08:13:37 2008
@@ -0,0 +1,72 @@
+
+
+/* First created by JCasGen Mon May 26 21:43:19 EDT 2008 */
+package org.apache.uima.calaisType.entity;
+
+import org.apache.uima.jcas.JCas; 
+import org.apache.uima.jcas.JCasRegistry;
+import org.apache.uima.jcas.cas.TOP_Type;
+
+import org.apache.uima.calaisType.Entity;
+
+
+/** 
+ * Updated by JCasGen Mon May 26 21:43:19 EDT 2008
+ * XML source: C:/a/Eclipse/3.3/apache/OpenCalaisAnnotatorGroovy/src/main/descriptors/CalaisTestCollectionReader.xml
+ * @generated */
+public class URL extends Entity {
+  /** @generated
+   * @ordered 
+   */
+  public final static int typeIndexID = JCasRegistry.register(URL.class);
+  /** @generated
+   * @ordered 
+   */
+  public final static int type = typeIndexID;
+  /** @generated  */
+  public              int getTypeIndexID() {return typeIndexID;}
+ 
+  /** Never called.  Disable default constructor
+   * @generated */
+  protected URL() {}
+    
+  /** Internal - constructor used by generator 
+   * @generated */
+  public URL(int addr, TOP_Type type) {
+    super(addr, type);
+    readObject();
+  }
+  
+  /** @generated */
+  public URL(JCas jcas) {
+    super(jcas);
+    readObject();   
+  } 
+
+  /** <!-- begin-user-doc -->
+    * Write your own initialization here
+    * <!-- end-user-doc -->
+  @generated modifiable */
+  private void readObject() {}
+     
+ 
+    
+  //*--------------*
+  //* Feature: canonicalForm
+
+  /** getter for canonicalForm - gets 
+   * @generated */
+  public String getCanonicalForm() {
+    if (URL_Type.featOkTst && ((URL_Type)jcasType).casFeat_canonicalForm == null)
+      jcasType.jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.URL");
+    return jcasType.ll_cas.ll_getStringValue(addr, ((URL_Type)jcasType).casFeatCode_canonicalForm);}
+    
+  /** setter for canonicalForm - sets  
+   * @generated */
+  public void setCanonicalForm(String v) {
+    if (URL_Type.featOkTst && ((URL_Type)jcasType).casFeat_canonicalForm == null)
+      jcasType.jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.URL");
+    jcasType.ll_cas.ll_setStringValue(addr, ((URL_Type)jcasType).casFeatCode_canonicalForm, v);}    
+  }
+
+    
\ No newline at end of file

Propchange: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/URL.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/URL_Type.java
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/URL_Type.java?rev=660553&view=auto
==============================================================================
--- incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/URL_Type.java (added)
+++ incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/URL_Type.java Tue May 27 08:13:37 2008
@@ -0,0 +1,79 @@
+
+/* First created by JCasGen Mon May 26 21:43:19 EDT 2008 */
+package org.apache.uima.calaisType.entity;
+
+import org.apache.uima.jcas.JCas;
+import org.apache.uima.jcas.JCasRegistry;
+import org.apache.uima.cas.impl.CASImpl;
+import org.apache.uima.cas.impl.FSGenerator;
+import org.apache.uima.cas.FeatureStructure;
+import org.apache.uima.cas.impl.TypeImpl;
+import org.apache.uima.cas.Type;
+import org.apache.uima.cas.impl.FeatureImpl;
+import org.apache.uima.cas.Feature;
+import org.apache.uima.calaisType.Entity_Type;
+
+/** 
+ * Updated by JCasGen Mon May 26 21:43:19 EDT 2008
+ * @generated */
+public class URL_Type extends Entity_Type {
+  /** @generated */
+  protected FSGenerator getFSGenerator() {return fsGenerator;}
+  /** @generated */
+  private final FSGenerator fsGenerator = 
+    new FSGenerator() {
+      public FeatureStructure createFS(int addr, CASImpl cas) {
+  			 if (URL_Type.this.useExistingInstance) {
+  			   // Return eq fs instance if already created
+  		     FeatureStructure fs = URL_Type.this.jcas.getJfsFromCaddr(addr);
+  		     if (null == fs) {
+  		       fs = new URL(addr, URL_Type.this);
+  			   URL_Type.this.jcas.putJfsFromCaddr(addr, fs);
+  			   return fs;
+  		     }
+  		     return fs;
+        } else return new URL(addr, URL_Type.this);
+  	  }
+    };
+  /** @generated */
+  public final static int typeIndexID = URL.typeIndexID;
+  /** @generated 
+     @modifiable */
+  public final static boolean featOkTst = JCasRegistry.getFeatOkTst("org.apache.uima.calaisType.entity.URL");
+ 
+  /** @generated */
+  final Feature casFeat_canonicalForm;
+  /** @generated */
+  final int     casFeatCode_canonicalForm;
+  /** @generated */ 
+  public String getCanonicalForm(int addr) {
+        if (featOkTst && casFeat_canonicalForm == null)
+      jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.URL");
+    return ll_cas.ll_getStringValue(addr, casFeatCode_canonicalForm);
+  }
+  /** @generated */    
+  public void setCanonicalForm(int addr, String v) {
+        if (featOkTst && casFeat_canonicalForm == null)
+      jcas.throwFeatMissing("canonicalForm", "org.apache.uima.calaisType.entity.URL");
+    ll_cas.ll_setStringValue(addr, casFeatCode_canonicalForm, v);}
+    
+  
+
+
+
+  /** initialize variables to correspond with Cas Type and Features
+	* @generated */
+  public URL_Type(JCas jcas, Type casType) {
+    super(jcas, casType);
+    casImpl.getFSClassRegistry().addGeneratorForType((TypeImpl)this.casType, getFSGenerator());
+
+ 
+    casFeat_canonicalForm = jcas.getRequiredFeatureDE(casType, "canonicalForm", "uima.cas.String", featOkTst);
+    casFeatCode_canonicalForm  = (null == casFeat_canonicalForm) ? JCas.INVALID_FEATURE_CODE : ((FeatureImpl)casFeat_canonicalForm).getCode();
+
+  }
+}
+
+
+
+    
\ No newline at end of file

Propchange: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/entity/URL_Type.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/relation/Acquisition.java
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/relation/Acquisition.java?rev=660553&view=auto
==============================================================================
--- incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/relation/Acquisition.java (added)
+++ incubator/uima/sandbox/trunk/OpenCalaisAnnotatorGroovy/src/main/java/org/apache/uima/calaisType/relation/Acquisition.java Tue May 27 08:13:37 2008
@@ -0,0 +1,109 @@
+
+
+/* First created by JCasGen Mon May 26 21:43:19 EDT 2008 */
+package org.apache.uima.calaisType.relation;
+
+import org.apache.uima.jcas.JCas; 
+import org.apache.uima.jcas.JCasRegistry;
+import org.apache.uima.jcas.cas.TOP_Type;
+
+import org.apache.uima.calaisType.Relation;
+import org.apache.uima.calaisType.entity.Company;
+
+
+/** 
+ * Updated by JCasGen Mon May 26 21:43:19 EDT 2008
+ * XML source: C:/a/Eclipse/3.3/apache/OpenCalaisAnnotatorGroovy/src/main/descriptors/CalaisTestCollectionReader.xml
+ * @generated */
+public class Acquisition extends Relation {
+  /** @generated
+   * @ordered 
+   */
+  public final static int typeIndexID = JCasRegistry.register(Acquisition.class);
+  /** @generated
+   * @ordered 
+   */
+  public final static int type = typeIndexID;
+  /** @generated  */
+  public              int getTypeIndexID() {return typeIndexID;}
+ 
+  /** Never called.  Disable default constructor
+   * @generated */
+  protected Acquisition() {}
+    
+  /** Internal - constructor used by generator 
+   * @generated */
+  public Acquisition(int addr, TOP_Type type) {
+    super(addr, type);
+    readObject();
+  }
+  
+  /** @generated */
+  public Acquisition(JCas jcas) {
+    super(jcas);
+    readObject();   
+  } 
+
+  /** <!-- begin-user-doc -->
+    * Write your own initialization here
+    * <!-- end-user-doc -->
+  @generated modifiable */
+  private void readObject() {}
+     
+ 
+    
+  //*--------------*
+  //* Feature: company_acquirer
+
+  /** getter for company_acquirer - gets 
+   * @generated */
+  public Company getCompany_acquirer() {
+    if (Acquisition_Type.featOkTst && ((Acquisition_Type)jcasType).casFeat_company_acquirer == null)
+      jcasType.jcas.throwFeatMissing("company_acquirer", "org.apache.uima.calaisType.relation.Acquisition");
+    return (Company)(jcasType.ll_cas.ll_getFSForRef(jcasType.ll_cas.ll_getRefValue(addr, ((Acquisition_Type)jcasType).casFeatCode_company_acquirer)));}
+    
+  /** setter for company_acquirer - sets  
+   * @generated */
+  public void setCompany_acquirer(Company v) {
+    if (Acquisition_Type.featOkTst && ((Acquisition_Type)jcasType).casFeat_company_acquirer == null)
+      jcasType.jcas.throwFeatMissing("company_acquirer", "org.apache.uima.calaisType.relation.Acquisition");
+    jcasType.ll_cas.ll_setRefValue(addr, ((Acquisition_Type)jcasType).casFeatCode_company_acquirer, jcasType.ll_cas.ll_getFSRef(v));}    
+   
+    
+  //*--------------*
+  //* Feature: company_beingacquired
+
+  /** getter for company_beingacquired - gets 
+   * @generated */
+  public Company getCompany_beingacquired() {
+    if (Acquisition_Type.featOkTst && ((Acquisition_Type)jcasType).casFeat_company_beingacquired == null)
+      jcasType.jcas.throwFeatMissing("company_beingacquired", "org.apache.uima.calaisType.relation.Acquisition");
+    return (Company)(jcasType.ll_cas.ll_getFSForRef(jcasType.ll_cas.ll_getRefValue(addr, ((Acquisition_Type)jcasType).casFeatCode_company_beingacquired)));}
+    
+  /** setter for company_beingacquired - sets  
+   * @generated */
+  public void setCompany_beingacquired(Company v) {
+    if (Acquisition_Type.featOkTst && ((Acquisition_Type)jcasType).casFeat_company_beingacquired == null)
+      jcasType.jcas.throwFeatMissing("company_beingacquired", "org.apache.uima.calaisType.relation.Acquisition");
+    jcasType.ll_cas.ll_setRefValue(addr, ((Acquisition_Type)jcasType).casFeatCode_company_beingacquired, jcasType.ll_cas.ll_getFSRef(v));}    
+   
+    
+  //*--------------*
+  //* Feature: status
+
+  /** getter for status - gets 
+   * @generated */
+  public String getStatus() {
+    if (Acquisition_Type.featOkTst && ((Acquisition_Type)jcasType).casFeat_status == null)
+      jcasType.jcas.throwFeatMissing("status", "org.apache.uima.calaisType.relation.Acquisition");
+    return jcasType.ll_cas.ll_getStringValue(addr, ((Acquisition_Type)jcasType).casFeatCode_status);}
+    
+  /** setter for status - sets  
+   * @generated */
+  public void setStatus(String v) {
+    if (Acquisition_Type.featOkTst && ((Acquisition_Type)jcasType).casFeat_status == null)
+      jcasType.jcas.throwFeatMissing("status", "org.apache.uima.calaisType.relation.Acquisition");
+    jcasType.ll_cas.ll_setStringValue(addr, ((Acquisition_Type)jcasType).casFeatCode_status, v);}    
+  }
+
+    
\ No newline at end of file