From a2b87f48775ca6687de0eb4af4b846bd1f0cdebf Mon Sep 17 00:00:00 2001 From: "Brian S. O'Neill" Date: Sun, 14 Oct 2007 02:31:22 +0000 Subject: Added support for "where exists" in queries via new syntax. --- src/main/java/com/amazon/carbonado/info/ChainedProperty.java | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'src/main/java/com/amazon/carbonado/info') diff --git a/src/main/java/com/amazon/carbonado/info/ChainedProperty.java b/src/main/java/com/amazon/carbonado/info/ChainedProperty.java index 7d21a49..575bcbf 100644 --- a/src/main/java/com/amazon/carbonado/info/ChainedProperty.java +++ b/src/main/java/com/amazon/carbonado/info/ChainedProperty.java @@ -336,8 +336,9 @@ public class ChainedProperty implements Appender { } /** - * Returns the chained property in a parseable form. The format is - * "name.subname.subsubname". + * Returns the chained property formatted as "name.subname.subsubname". + * This format is parseable only if the chain is composed of valid + * many-to-one joins. */ @Override public String toString() { @@ -354,8 +355,9 @@ public class ChainedProperty implements Appender { } /** - * Appends the chained property in a parseable form. The format is - * "name.subname.subsubname". + * Appends the chained property formatted as "name.subname.subsubname". + * This format is parseable only if the chain is composed of valid + * many-to-one joins. */ public void appendTo(Appendable app) throws IOException { app.append(mPrime.getName()); -- cgit v1.2.3