Uses of Class
de.h_da.library.datamanagement.entity.Book

Packages that use Book
de.h_da.library.datamanagement.entity   
de.h_da.library.datamanagement.usecase   
 

Uses of Book in de.h_da.library.datamanagement.entity
 

Fields in de.h_da.library.datamanagement.entity declared as Book
private  Book BookOnStock.book
          The book type (title and author)
 

Uses of Book in de.h_da.library.datamanagement.usecase
 

Methods in de.h_da.library.datamanagement.usecase that return types with arguments of type Book
 java.util.Collection<Book> Search.findBooksByAttributes(Book book)
          [basicQuery] Finds all books in the library system according to a given template.
 

Methods in de.h_da.library.datamanagement.usecase with parameters of type Book
 int BookManagement.addBook(Book bookRecord, int numberOfBooksOnStock)
          [command] Adds a new Book object and numberOfBooksOnStock new BookOnStock objects to the datamanagement component.
 java.util.Collection<Book> Search.findBooksByAttributes(Book book)
          [basicQuery] Finds all books in the library system according to a given template.
 void BookManagement.modifyBook(Book book)
          [command] Modifies an already stored Book object.