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

org.xbib.cql.Node Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
package org.xbib.cql;

/**
 * This is a node interface for the CQL abstract syntax tree.
 */
public interface Node extends Comparable {

    /**
     * Accept a visitor on this node.
     *
     * @param visitor the visitor
     */
    void accept(Visitor visitor);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy