-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBook.java
More file actions
43 lines (36 loc) · 932 Bytes
/
Copy pathBook.java
File metadata and controls
43 lines (36 loc) · 932 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
/**
* Represents a book in the library management system.
*/
public class Book {
private int bookId;
private String title;
private String author;
private boolean isIssued;
public Book(int bookId, String title, String author) {
this.bookId = bookId;
this.title = title;
this.author = author;
this.isIssued = false;
}
// Getters and Setters
public int getBookId() {
return bookId;
}
public String getTitle() {
return title;
}
public String getAuthor() {
return author;
}
public boolean isIssued() {
return isIssued;
}
public void setIssued(boolean issued) {
isIssued = issued;
}
@Override
public String toString() {
return String.format("ID: %d | Title: %-20s | Author: %-15s | %s",
bookId, title, author, (isIssued ? "[Issued]" : "[Available]"));
}
}