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

com.github.rutledgepaulv.qbuilders.nodes.OrNode 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 OrNode extends LogicalNode {

    public OrNode() {}

    public OrNode(LogicalNode parent) {
        super(parent);
    }

    public OrNode(LogicalNode parent, List children) {
        super(parent, children);
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy