package edu.sc.seis.sod.subsetter.channel;
import org.w3c.dom.Element;
import edu.sc.seis.sod.ConfigurationException;
import edu.sc.seis.sod.status.StringTree;
public class ChannelNOT extends ChannelLogicalSubsetter
implements ChannelSubsetter {
public ChannelNOT (Element config) throws ConfigurationException {
super(config);
}
public boolean isSuccess(StringTree[] reasons) {
return !reasons[0].isSuccess();
}
public boolean shouldContinue(StringTree result) {
return false;
}
}// ChannelNOT