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

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

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);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy