Revert "Added Netbeans project."
[cql-java-moved-to-github.git] / src / org / z3950 / zing / cql / CQLOrNode.java
index c315e29..9e7d66e 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.9 2007-06-29 12:48:21 mike Exp $
 
 package org.z3950.zing.cql;
 
@@ -6,20 +6,17 @@ 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.9 2007-06-29 12:48:21 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);
     }
 
-    String op() {
-       return "or";
-    }
-
     byte[] opType1() {
        byte[] op = new byte[5];
        putTag(CONTEXT, 46, CONSTRUCTED, op, 0); // Operator