package edu.sc.seis.sod.subsetter.network;
import org.w3c.dom.Element;
import edu.sc.seis.sod.ConfigurationException;
import edu.sc.seis.sod.status.StringTree;
public final class NetworkOR extends NetworkLogicalSubsetter
implements NetworkSubsetter {
public NetworkOR (Element config) throws ConfigurationException {
super(config);
}
public boolean shouldContinue(StringTree result) {
return !result.isSuccess();
}
public boolean isSuccess(StringTree[] reasons) {
for(int i = 0; i < reasons.length; i++) {
if(reasons[i].isSuccess()){
return true;
}
}
return false;
}
}// NetworkAttrOR