public static void usePredefinedFetchGroups(PersistenceManager pm){
//create a fetch plan
FetchPlan fp = pm.getFetchPlan();
//create a book
Author author = new Author("William S. Burroughs");
Address address = new Address("Fenton Street", "931ZR2", "Leeds");
Editor editor = new Editor("Mille et Une Nuits", address);
Book book = new Book("The Yage Letters", author, editor, 1955);
//make the book persistent