Work toward improving solidity. Add a few more unit tests, and some toString()
[cfb.git] / prod / net / jaekl / cfb / db / Condition.java
index 98bd5f26f165c24b29f3c317a2c772c56aaea87e..75bfe2955eed3d632f01e94b2181443fe0d46838 100644 (file)
@@ -30,4 +30,9 @@ public class Condition {
        public Column getColumn() { return m_column; }
        public Object getValue() { return m_value; }
        public Operation getOperation() { return m_operation; }
+       
+       @Override
+       public String toString() {
+               return ("(" + m_column.getName() + " " + m_operation + " " + m_value + ")");
+       }
 }