-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBook.java
76 lines (61 loc) · 1.62 KB
/
Book.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
public class Book extends AbstractBook implements Strategy {
private String title;
private String author;
private int pageCount;
private int price;
// constructor
Book(String title, String author, int pageCount, int price) {
this.title = title;
this.author = author;
this.pageCount = pageCount;
this.price = price;
}
// methods getter, setter
public String getTitle() {
return this.title;
}
public String getAuthor() {
return this.author;
}
public int getPageCount() {
return this.pageCount;
}
public int getPrice() {
return this.price;
}
public void setTitle(String title) {
this.title = title;
}
public void setAuthor(String author) {
this.author = author;
}
public void setPageCount(int pageCount) {
this.pageCount = pageCount;
}
public void setPrice(int price) {
this.price = price;
}
// own method
public void generalInfo() {
System.out.println("This is book prototype");
}
public String toString() {
return String.format("%s by %s", this.title, this.author);
}
// define abstract methods inherited
void printBook() {
System.out.println("Print a book");
}
// define implemented methods by overriding them
@Override
public void updateNew(int increment) {
price = price + increment;
}
@Override
public void discountSale(int decrement) {
price = price - decrement;
}
void downloadBook() {
System.out.println("Download a book");
}
}