All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.rutledgepaulv.qbuilders.nodes.AndNode Maven / Gradle / Ivy

There is a newer version: 1.6
Show newest version
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);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy