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

com.blazebit.regex.node.OrNode Maven / Gradle / Ivy

There is a newer version: 1.6.11
Show newest version
package com.blazebit.regex.node;

import java.util.ArrayList;
import java.util.List;

public class OrNode extends AbstractNode {

    private final List nodes = new ArrayList();

    public void add(Node node) {
        nodes.add(node);
    }

    public List getNodes() {
        return nodes;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy