AlchemyAPIAnnotator/src/main/java/org/apache/uima/alchemy/ts/entity/Country_Type.java [39:50]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      public FeatureStructure createFS(int addr, CASImpl cas) {
  			 if (Country_Type.this.useExistingInstance) {
  			   // Return eq fs instance if already created
  		     FeatureStructure fs = Country_Type.this.jcas.getJfsFromCaddr(addr);
  		     if (null == fs) {
  		       fs = new Country(addr, Country_Type.this);
  			   Country_Type.this.jcas.putJfsFromCaddr(addr, fs);
  			   return fs;
  		     }
  		     return fs;
        } else return new Country(addr, Country_Type.this);
  	  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



OpenCalaisAnnotator/src/main/java/org/apache/uima/calais/Country_Type.java [40:51]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      public FeatureStructure createFS(int addr, CASImpl cas) {
  			 if (Country_Type.this.useExistingInstance) {
  			   // Return eq fs instance if already created
  		     FeatureStructure fs = Country_Type.this.jcas.getJfsFromCaddr(addr);
  		     if (null == fs) {
  		       fs = new Country(addr, Country_Type.this);
  			   Country_Type.this.jcas.putJfsFromCaddr(addr, fs);
  			   return fs;
  		     }
  		     return fs;
        } else return new Country(addr, Country_Type.this);
  	  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



