use of ambit2.db.readers.ReadChemicalIds in project ambit-mirror by ideaconsult.
the class CSVReporter method configurePropertyProcessors.
@Override
protected void configurePropertyProcessors() {
super.configurePropertyProcessors();
getProcessors().add(new ProcessorStructureRetrieval(new ReadChemicalIds()) {
@Override
public IStructureRecord process(IStructureRecord target) throws AmbitException {
((ReadChemicalIds) getQuery()).setValue(target);
return super.process(target);
}
});
}
Aggregations