// call this method recursively on each component
Map components = this._getASB().getComponentAnalysisEngines();
Iterator it = components.values().iterator();
while (it.hasNext()) {
ConfigurableResource component = (ConfigurableResource) it.next();
component.reconfigure();
}
}
public void batchProcessComplete() throws AnalysisEngineProcessException {
enterBatchProcessComplete();