X-Git-Url: http://jaekl.net/gitweb/?p=cfb.git;a=blobdiff_plain;f=prod%2Fnet%2Fjaekl%2Fcfb%2Fdb%2FCondition.java;h=75bfe2955eed3d632f01e94b2181443fe0d46838;hp=98bd5f26f165c24b29f3c317a2c772c56aaea87e;hb=f1c4313e9229dd2d5f7fd984169cbdb89fef4cd5;hpb=9868f50714076f9dc90e7021a45324411afd9ce1 diff --git a/prod/net/jaekl/cfb/db/Condition.java b/prod/net/jaekl/cfb/db/Condition.java index 98bd5f2..75bfe29 100644 --- a/prod/net/jaekl/cfb/db/Condition.java +++ b/prod/net/jaekl/cfb/db/Condition.java @@ -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 + ")"); + } }