-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIssuedbooks.java
More file actions
51 lines (37 loc) · 1016 Bytes
/
Issuedbooks.java
File metadata and controls
51 lines (37 loc) · 1016 Bytes
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
public class Issuedbooks {
private String bookid,procedure,stdId;
private boolean returned;
public Issuedbooks(String bookid, String procedure, String stdId, boolean returned) {
this.bookid = bookid;
this.procedure = procedure;
this.stdId = stdId;
this.returned = returned;
}
public String getBookid() {
return this.bookid;
}
public void setBookid(String bookid) {
this.bookid = bookid;
}
public String getProcedure() {
return this.procedure;
}
public void setProcedure(String procedure) {
this.procedure = procedure;
}
public String getStdId() {
return this.stdId;
}
public void setStdId(String stdId) {
this.stdId = stdId;
}
public boolean isReturned() {
return this.returned;
}
public boolean getReturned() {
return this.returned;
}
public void setReturned(boolean returned) {
this.returned = returned;
}
}