From e0b53e535ba6087bb066fcd7c9a22daa7efa6c9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timo=20Westk=C3=A4mper?= Date: Sun, 24 Feb 2008 17:10:25 +0000 Subject: [PATCH] removed comments --- .../java/com/mysema/query/grammar/Types.java | 37 +------------------ 1 file changed, 1 insertion(+), 36 deletions(-) diff --git a/src/main/java/com/mysema/query/grammar/Types.java b/src/main/java/com/mysema/query/grammar/Types.java index c2ce00c93..8ac58e814 100644 --- a/src/main/java/com/mysema/query/grammar/Types.java +++ b/src/main/java/com/mysema/query/grammar/Types.java @@ -64,20 +64,7 @@ public class Types { } public interface ExprBoolean extends Expr{ } - -// public interface ExprComparable> extends Expr{ -// ExprBoolean between(A start, A end); -// ExprBoolean between(Expr start, Expr end); -// ExprBoolean goe(A right); -// ExprBoolean goe(Expr right); -// ExprBoolean gt(A right); -// ExprBoolean gt(Expr right); -// ExprBoolean loe(A right); -// ExprBoolean loe(Expr right); -// ExprBoolean lt(A right); -// ExprBoolean lt(Expr right); -// } - + /** * Reference to an entity */ @@ -152,9 +139,6 @@ public class Types { } public ExprBoolean isnotnull(){return Grammar.isnotnull(this);} -// Op IN = new OpImpl(); -// Op ISTYPEOF = new OpImpl(); - // these should only be applied to paths public ExprBoolean isnull(){return Grammar.isnull(this);} @Override @@ -175,24 +159,6 @@ public class Types { } } -// public static class PathComparable> extends Path -// implements ExprComparable{ -// PathComparable(String p) { -// super(p); -// } -// -// public ExprBoolean between(A start, A end){ return Grammar.between(this,start, end);} -// public ExprBoolean between(Expr start, Expr end){ return Grammar.between(this,start, end);} -// public ExprBoolean goe(A right){ return Grammar.goe(this, right);} -// public ExprBoolean goe(Expr right){ return Grammar.goe(this, right);} -// public ExprBoolean gt(A right){ return Grammar.gt(this, right);} -// public ExprBoolean gt(Expr right){ return Grammar.gt(this, right);} -// public ExprBoolean loe(A right){ return Grammar.loe(this, right);} -// public ExprBoolean loe(Expr right){ return Grammar.loe(this, right);} -// public ExprBoolean lt(A right){ return Grammar.lt(this, right);} -// public ExprBoolean lt(Expr right){ return Grammar.lt(this, right);} -// } - public static class PathDomainType extends Path implements ExprEntity{ protected PathDomainType(PathDomainType type, String path) { super(type+"."+path); @@ -208,7 +174,6 @@ public class Types { return new Path(this+"."+path); } - // convenience public AliasForEntity as(PathDomainType to) {return Grammar.as(this, to);} public AliasForEntity as(String to) {return Grammar.as(this, to);} }