com.github.rutledgepaulv.qbuilders.nodes.AndNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of q-builders Show documentation
Show all versions of q-builders Show documentation
A type-safe and database agnostic query building library.
The newest version!
/*
*
* * com.github.rutledgepaulv.qbuilders.nodes.AndNode
* * *
* * * 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 AndNode extends LogicalNode {
public AndNode() {}
public AndNode(LogicalNode parent) {
super(parent);
}
public AndNode(LogicalNode parent, List children) {
super(parent, children);
}
}