OPENJPA-442 committing patch provided by Teresa Kan

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@649947 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Dick 2008-04-20 18:09:19 +00:00
parent 316ced44c4
commit a35b53b27f
1 changed files with 9 additions and 2 deletions

View File

@ -78,6 +78,13 @@ public class QueryImpl
_query = new DelegatingQuery(query, ret);
}
/**
* Constructor; supply factory and delegate.
*/
public QueryImpl(EntityManagerImpl em, org.apache.openjpa.kernel.Query query) {
this(em, null, query);
}
/**
* Delegate.
*/