http://code.google.com/p/liquidform/ is a libray that adds a DSL on top of JPA. In particular, the DSL allows for queries to use domain objects in a typesafe manner. for example:
List people = em.createQuery(
"SELECT FROM Person p WHERE p.surname LIKE 'Smith%'")