org.xbib.cql.Node Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cql Show documentation
Show all versions of cql Show documentation
Contextual Query Language compiler for Java
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);
}