Uses of Class
openbook.domain.Book
-
Packages that use Book Package Description openbook.domain openbook.server -
-
Uses of Book in openbook.domain
Methods in openbook.domain that return Book Modifier and Type Method Description Book
Inventory. getBook()
Gets the Book that this inventory represents.Book
LineItem. getBook()
Gets the Book for this line item.Methods in openbook.domain that return types with arguments of type Book Modifier and Type Method Description java.util.Set<Book>
Author. getBooks()
java.util.Map<Book,java.lang.Integer>
ShoppingCart. getItems()
Gets the books with their corresponding quantity in this cart.Methods in openbook.domain with parameters of type Book Modifier and Type Method Description void
Author. addBook(Book book)
void
ShoppingCart. addItem(Book book, int quantity)
Add the given book with the given quantity in the cart.void
ShoppingCart. changeQuantity(Book book, int delta)
Change the quantity of the given book by the given delta.void
ShoppingCart. remove(Book book)
Removes the given book from this cart. -
Uses of Book in openbook.server
Methods in openbook.server that return Book Modifier and Type Method Description Book
OpenBookService. supply(Book b, int quantity)
Add inventory of the given Book by the given quantity.Methods in openbook.server that return types with arguments of type Book Modifier and Type Method Description java.util.List<Book>
OpenBookService. select(java.lang.String title, java.lang.Double min, java.lang.Double max, java.lang.String author, QueryDecorator... decorators)
Selects a list of Books matching the given conditions.Methods in openbook.server with parameters of type Book Modifier and Type Method Description Book
OpenBookService. supply(Book b, int quantity)
Add inventory of the given Book by the given quantity.
-