use of gate.ProcessingResource in project gate-core by GateNLP.
the class ConditionalSerialController method remove.
@Override
public ProcessingResource remove(int index) {
ProcessingResource aPr = super.remove(index);
strategiesList.remove(index);
fireResourceRemoved(new ControllerEvent(this, ControllerEvent.RESOURCE_REMOVED, aPr));
return aPr;
}
Aggregations