org.z3950.zing.cql
Class CQLAndNode

java.lang.Object
  |
  +--org.z3950.zing.cql.CQLNode
        |
        +--org.z3950.zing.cql.CQLBooleanNode
              |
              +--org.z3950.zing.cql.CQLAndNode

public class CQLAndNode
extends CQLBooleanNode

Represents an AND node in a CQL parse-tree.

Version:
$Id: CQLAndNode.java,v 1.5 2002/11/06 00:05:58 mike Exp $

Fields inherited from class org.z3950.zing.cql.CQLBooleanNode
left, right
 
Constructor Summary
CQLAndNode(CQLNode left, CQLNode right)
          Creates a new AND node with the specified left- and right-hand sides.
 
Methods inherited from class org.z3950.zing.cql.CQLBooleanNode
toCQL, toPQF, toXCQL
 
Methods inherited from class org.z3950.zing.cql.CQLNode
indent, renderPrefixes, toXCQL, xq
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CQLAndNode

public CQLAndNode(CQLNode left,
                  CQLNode right)
Creates a new AND node with the specified left- and right-hand sides.