return true;
}
public void cancel() throws OperationUnsupportedException {
if (!isCancelSupported()) {
throw new OperationUnsupportedException("cancel");
}
for (Iterator itr=getSources().iterator();itr.hasNext();) {
ProgressObject source = (ProgressObject) itr.next();
source.cancel();
}