It would be nice to be able to quickly reference the javax.persistence Api in the left navigation list. In writing Request factory code, it would be nice to reference the things that go along with it.
For example the RequestFactory > expenses example, what is setFirstResult(int) refer to?
package com.google.gwt.sample.expenses.server.domain.Employee
List<Employee> resultList = em.createQuery("select o from Employee o").setFirstResult(
firstResult).setMaxResults(maxResults).getResultList();
Brandon Donnelson