We caught a small glitch in the use of generics in the result of
EntityManager.getEntityGraph.
Instead of
public <T> EntityGraph<T> getEntityGraph(String graphName);
the signature of this method should be
public EntityGraph<?> getEntityGraph(String graphName);
I've just uploaded new javadocs that reflect this to
http://java.net/projects/jpa-spec/downloads.
There are no other changes to APIs or spec from what I uploaded on March 22.
I will be submitting all required materials to the JCP shortly, in
preparation for the final approval ballot.
-Linda