-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLibrarian.java
More file actions
115 lines (90 loc) · 2.47 KB
/
Copy pathLibrarian.java
File metadata and controls
115 lines (90 loc) · 2.47 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
public class Librarian{
}
class Librarian_add{
private String bookName;
private String Writer;
private int cost;
public Librarian_add(String bookName, String writer, int cost) {
this.bookName = bookName;
Writer = writer;
this.cost = cost;
}
public void addBooks(){
}
public String getBookName() {
return bookName;
}
public void setBookName(String bookName) {
this.bookName = bookName;
}
public String getWriter() {
return Writer;
}
public void setWriter(String writer) {
Writer = writer;
}
public int getCost() {
return cost;
}
public void setCost(int cost) {
this.cost = cost;
}
}
class librarian_Edit{
private String bookName;
private int cost;
private String Writer;
public librarian_Edit(String bookName, int cost, String writer) {
this.bookName = bookName;
this.cost = cost;
Writer = writer;
}
public String getBookName() {
return bookName;
}
public void setBookName(String bookName) {
this.bookName = bookName;
}
public int getCost() {
return cost;
}
public void setCost(int cost) {
this.cost = cost;
}
public String getWriter() {
return Writer;
}
public void setWriter(String writer) {
Writer = writer;
}
}
class Librarian_issue {
private String studentName;
private String bookName;
private String days;
public Librarian_issue( String studentName, String bookName, String days) {
this.studentName = studentName;
this.bookName = bookName;
this.days = days;
}
public String getStudentName() {
return studentName;
}
public void setStudentName(String studentName) {
this.studentName = studentName;
}
public String getBookName() {
return bookName;
}
public void setBookName(String bookName) {
this.bookName = bookName;
}
public String getDays() {
return days;
}
public void setDays(String days) {
this.days = days;
}
}
class Librarian_view{
}