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



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



