-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBook.java
87 lines (58 loc) · 1.32 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
77
78
79
80
81
82
83
84
85
86
87
public class Book{
private String Title;
private String Author;
private int PageCount;
private int YearPublished;
private double Isbn;
private double Cost;
public Book(String title, String author, int pageCount, int yearPublished, double isbn, double cost) {
super();
Title = title;
Author = author;
PageCount = pageCount;
YearPublished = yearPublished;
Isbn = isbn;
Cost = cost;
}
public String getTitle() {
return Title;
}
public void setTitle(String title) {
Title = title;
}
public String getAuthor() {
return Author;
}
public void setAuthor(String author) {
Author = author;
}
public int getPageCount() {
return PageCount;
}
public void setPageCount(int pageCount) {
PageCount = pageCount;
}
public int getYearPublished() {
return YearPublished;
}
public void setYearPublished(int yearPublished) {
YearPublished = yearPublished;
}
public double getIsbn() {
return Isbn;
}
public void setIsbn(double isbn) {
Isbn = isbn;
}
public double getCost() {
return Cost;
}
public void setCost(double cost) {
Cost = cost;
}
@Override
public String toString() {
return "Book [Title=" + Title + ", Author=" + Author + ", PageCount=" + PageCount + ", YearPublished="
+ YearPublished + ", Isbn=" + Isbn + ", Cost=" + Cost + "]";
}
}