Issue 43: AbstractClause is not public
Status:  New
Owner: ----
Reported by corneliu...@googlemail.com, Mar 8, 2013
Hello,
We'd like to use have AbstractClause available in our code.
We'd like to do the following:
(with a static import of LiquidForm)

A p = alias(A.class, "p");

AbstractClause query = select(p).from(A.class);
if(activeOnly) {
query = query.where(eq(p.getActive(), Boolean.TRUE);
}
// execute query
Without a public AbstractClause, this is impossible :(