forked from maiquynhtruong/algorithms-and-problems
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathonline-book-reader.java
80 lines (78 loc) · 2.55 KB
/
online-book-reader.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
public class Solution {
public class OnlineEBookReader {
public Library library;
public User user;
public Display display;
public Book activeBook;
public OnlineEBookReader() {
user = new User();
library = new Library();
display = new Display();
activeBook = new Book();
}
public Book getActiveBook() { return activeBook;}
public void setActiveBook(Book activeBook) {
this.activeBook = activeBook;
display.showBook(activeBook);
}
public User getActiveUser() { return activeUser;}
public void setActiveUser(User activeUser) {
this.activeUser = activeUser;
display.showUser(activeUser);
}
}
public class Library {
HashMap<Integer, Book> books = new HashMap<Integer, Book>();
public Book searchBookByTitle(String title) {}
public Book searchBookByAuthor(String author) {}
public Book searchBookByPublisher(String publisher) {}
public Book searchBookByISBN(int ISBN) {
return books.get(ISBN);
}
public void addNewBook(Book newBook) {
if (books.containsKey(newBook.ISBN)) return null;
books.put(newBook.ISBN, newBook);
}
public void removeBook(int ISBN) {
if (books.containsKey(ISBN)) books.remove(ISBN);
}
}
public class Book {
int ISBN;
String title, author, publisher;
int yearOfPub, numPages;
double weight;
public Book(int ISBN, String title, String author, String publisher, int yeaerOfPub, int numPages, double weight) {}
}
public class User {
boolean isMember;
int lastMembershipRenewed = 0;
int membershipDuration = 90; // days
public void renewMembership() {
isMember = true;
lastMembershipRenewed += membershipDuration;
}
}
public class Display {
Book activeBook;
User activeUser;
int currentPage;
public void nextPage() {
if (currentPage == activeBook.numPages) return;
else currentPage++;
}
public void previousPage() {
if (currentPage == 0) return;
else currentPage--;
}
public void displayUser(User user) {
activeUser = user;
}
public void displayBook(Book book) {
currentPage = 0;
activeBook = book;
}
}
public static void main(String args[]) {
}
}