From 26ece1f2c000d60c282479f9be4ea7463b16a85f Mon Sep 17 00:00:00 2001 From: Par Winzell Date: Wed, 7 Apr 2010 18:34:23 +0000 Subject: [PATCH] Ray points out these should be FluentExp's. --- src/java/com/samskivert/depot/expression/FluentExp.java | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/java/com/samskivert/depot/expression/FluentExp.java b/src/java/com/samskivert/depot/expression/FluentExp.java index 3f4d58f..a179c52 100644 --- a/src/java/com/samskivert/depot/expression/FluentExp.java +++ b/src/java/com/samskivert/depot/expression/FluentExp.java @@ -218,27 +218,26 @@ public abstract class FluentExp } /** Returns a {@link Like} on this column and the supplied target. */ - public Like like (Comparable value) + public FluentExp like (Comparable value) { return new Like(this, value, true); } /** Returns a {@link Like} on this column and the supplied target. */ - public Like like (SQLExpression expr) + public FluentExp like (SQLExpression expr) { return new Like(this, expr, true); } /** Returns a negated {@link Like} on this column and the supplied target. */ - public Like notLike (Comparable value) + public FluentExp notLike (Comparable value) { return new Like(this, value, false); } /** Returns a negated {@link Like} on this column and the supplied target. */ - public Like notLike (SQLExpression expr) + public FluentExp notLike (SQLExpression expr) { return new Like(this, expr, false); } - }