Uses of Class
book.ex6.model.Book

Packages that use Book
book.ex6.model   
 

Uses of Book in book.ex6.model
 

Fields in book.ex6.model with type parameters of type Book
private  java.util.Set<Book> Publisher.books
           
private  java.util.Set<Book> Author.books
           
 

Methods in book.ex6.model that return Book
 Book Book.addAuthor(Author author)
           
 Book Book.addKeyword(java.lang.String keyword)
           
 

Methods in book.ex6.model that return types with arguments of type Book
 java.util.Set<Book> Publisher.getBooks()
           
 java.util.Set<Book> Author.getBooks()
           
 

Methods in book.ex6.model with parameters of type Book
 Publisher Publisher.addBook(Book book)
           
 Author Author.addBook(Book book)
           
 

Method parameters in book.ex6.model with type arguments of type Book
 void Publisher.setBooks(java.util.Set<Book> books)
           
 void Author.setBooks(java.util.Set<Book> books)