com.github.rutledgepaulv.qbuilders.nodes.OrNode Maven / Gradle / Ivy
/*
*
* * com.github.rutledgepaulv.qbuilders.nodes.OrNode
* * *
* * * Copyright (C) 2016 Paul Rutledge
* * *
* * * This software may be modified and distributed under the terms
* * * of the MIT license. See the LICENSE file for details.
* *
*
*/
package com.github.rutledgepaulv.qbuilders.nodes;
import java.util.List;
public final class OrNode extends LogicalNode {
public OrNode() {}
public OrNode(LogicalNode parent) {
super(parent);
}
public OrNode(LogicalNode parent, List children) {
super(parent, children);
}
}