Project

General

Profile

« Previous | Next » 

Revision 3f8e87ed

Added by Katja Luther almost 10 years ago

adding a taxon bulk editor and changes because the delete methods does not throw exceptions anymore

View differences:

eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/store/SearchManager.java
101 101
		return CdmStore.getService(ITaxonService.class).findTaxaAndNamesForEditor(configurator);
102 102
	}
103 103

  
104
	
105
	
104 106

  
105 107
	/**
106 108
	 * <p>findReferences</p>
......
240 242
		return configurator.getTitleSearchString().replace(WILDCARD, "%");
241 243
	}
242 244

  
245
	public List findTaxa(IIdentifiableEntityServiceConfigurator configurator) {
246
		if(checkLargeResult(CdmStore.getService(ITaxonService.class).countByTitle(configurator))){
247
			return CdmStore.getService(ITaxonService.class).findByTitle(configurator).getRecords();
248
		}
249
		return NO_RESULTS;
250
	}
251

  
243 252

  
244 253
}

Also available in: Unified diff