-// $Id: CQLAndNode.java,v 1.7 2007-06-29 10:22:12 mike Exp $
+// $Id: CQLAndNode.java,v 1.8 2007-06-29 11:54:56 mike Exp $
package org.z3950.zing.cql;
/**
* Represents an AND node in a CQL parse-tree.
*
- * @version $Id: CQLAndNode.java,v 1.7 2007-06-29 10:22:12 mike Exp $
+ * @version $Id: CQLAndNode.java,v 1.8 2007-06-29 11:54:56 mike Exp $
*/
public class CQLAndNode extends CQLBooleanNode {
/**
- * Creates a new AND node with the specified left- and right-hand sides.
+ * Creates a new AND node with the specified left- and right-hand
+ * sides and modifiers.
*/
public CQLAndNode(CQLNode left, CQLNode right, ModifierSet ms) {
super(left, right, ms);
-// $Id: CQLNotNode.java,v 1.7 2007-06-29 10:22:12 mike Exp $
+// $Id: CQLNotNode.java,v 1.8 2007-06-29 11:54:56 mike Exp $
package org.z3950.zing.cql;
/**
* Represents a NOT node in a CQL parse-tree.
*
- * @version $Id: CQLNotNode.java,v 1.7 2007-06-29 10:22:12 mike Exp $
+ * @version $Id: CQLNotNode.java,v 1.8 2007-06-29 11:54:56 mike Exp $
*/
public class CQLNotNode extends CQLBooleanNode {
/**
- * Creates a new NOT node with the specified left- and right-hand sides.
+ * Creates a new NOT node with the specified left- and right-hand
+ * sides and modifiers.
*/
public CQLNotNode(CQLNode left, CQLNode right, ModifierSet ms) {
super(left, right, ms);
-// $Id: CQLOrNode.java,v 1.7 2007-06-29 10:22:12 mike Exp $
+// $Id: CQLOrNode.java,v 1.8 2007-06-29 11:54:56 mike Exp $
package org.z3950.zing.cql;
/**
* Represents an OR node in a CQL parse-tree.
*
- * @version $Id: CQLOrNode.java,v 1.7 2007-06-29 10:22:12 mike Exp $
+ * @version $Id: CQLOrNode.java,v 1.8 2007-06-29 11:54:56 mike Exp $
*/
public class CQLOrNode extends CQLBooleanNode {
/**
- * Creates a new OR node with the specified left- and right-hand sides.
+ * Creates a new OR node with the specified left- and right-hand
+ * sides and modifiers.
*/
public CQLOrNode(CQLNode left, CQLNode right, ModifierSet ms) {
super(left, right, ms);