org.z3950.zing.cql
Class CQLNotNode

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

public class CQLNotNode
extends CQLBooleanNode

Represents a NOT node in a CQL parse-tree.

Version:
$Id: CQLNotNode.java,v 1.6 2002/12/05 17:14:52 mike Exp $

Fields inherited from class org.z3950.zing.cql.CQLBooleanNode
left, right
 
Fields inherited from class org.z3950.zing.cql.CQLNode
APPLICATION, BITSTRING, BOOLEAN, CONSTRUCTED, CONTEXT, ENUMERATED, EXTERNAL, GENERALSTRING, INTEGER, NULL, OBJECTDESCRIPTOR, OBJECTIDENTIFIER, OCTETSTRING, PRIMITIVE, PRIVATE, SEQUENCE, SET, UNIVERSAL, VISIBLESTRING
 
Constructor Summary
CQLNotNode(CQLNode left, CQLNode right)
          Creates a new NOT node with the specified left- and right-hand sides.
 
Methods inherited from class org.z3950.zing.cql.CQLBooleanNode
toCQL, toPQF, toType1BER, toXCQL
 
Methods inherited from class org.z3950.zing.cql.CQLNode
getResultSetName, indent, lenLen, makeOID, makeQuery, numLen, putLen, putNum, putTag, renderPrefixes, toXCQL, xq
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CQLNotNode

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