Comments
authormike <mike>
Fri, 29 Jun 2007 11:54:56 +0000 (11:54 +0000)
committermike <mike>
Fri, 29 Jun 2007 11:54:56 +0000 (11:54 +0000)
src/org/z3950/zing/cql/CQLAndNode.java
src/org/z3950/zing/cql/CQLNotNode.java
src/org/z3950/zing/cql/CQLOrNode.java

index 8f48664..d2e9f0f 100644 (file)
@@ -1,4 +1,4 @@
-// $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;
 
@@ -6,11 +6,12 @@ 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);
index ff67cf8..dd51321 100644 (file)
@@ -1,4 +1,4 @@
-// $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;
 
@@ -6,11 +6,12 @@ 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);
index c315e29..961f6d1 100644 (file)
@@ -1,4 +1,4 @@
-// $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;
 
@@ -6,11 +6,12 @@ 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);