From: Jakub Skoczen Date: Fri, 22 Jul 2011 16:02:22 +0000 (+0200) Subject: Rename X-Git-Tag: v1.8~1 X-Git-Url: http://git.indexdata.com/?a=commitdiff_plain;h=2201900abb957fe030809d9b6a79e8815a094edf;p=cql-java-moved-to-github.git Rename --- diff --git a/src/main/java/org/z3950/zing/cql/CQLBooleanNode.java b/src/main/java/org/z3950/zing/cql/CQLBooleanNode.java index 902e6b5..f30dd78 100644 --- a/src/main/java/org/z3950/zing/cql/CQLBooleanNode.java +++ b/src/main/java/org/z3950/zing/cql/CQLBooleanNode.java @@ -16,7 +16,7 @@ public abstract class CQLBooleanNode extends CQLNode { /** * The root of a parse-tree representing the left-hand side. */ - public CQLNode getLeft() { + public CQLNode getLeftOperand() { return left; } @@ -25,7 +25,7 @@ public abstract class CQLBooleanNode extends CQLNode { /** * The root of a parse-tree representing the right-hand side. */ - public CQLNode getRight() { + public CQLNode getRightOperand() { return right; }