This commit is contained in:
Timo Westkämper 2010-03-08 20:34:16 +00:00
parent b4061424d3
commit 32ff34ee98
2 changed files with 4 additions and 1 deletions

View File

@ -34,6 +34,7 @@ import com.mysema.query.types.path.Path;
import com.mysema.query.types.query.SubQuery;
/**
* JDOQLSerializer serializes Querydsl queries and expressions into JDOQL strings
*
* @author tiwe
*
@ -278,7 +279,7 @@ public final class JDOQLSerializer extends SerializerBase<JDOQLSerializer> {
}
@Override
public void visit(SubQuery query) {
public void visit(SubQuery<?> query) {
append("(");
serialize(query.getMetadata(), false, true);
append(")");

View File

@ -17,6 +17,8 @@ import com.mysema.query.types.path.PEntity;
import com.mysema.query.types.path.Path;
/**
* JDOQLSubQuery is subquery implementation for JDOQL
*
* @author tiwe
*
*/