You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This repository contains Java programs demonstrating essential Object-Oriented Programming (OOP) concepts such as **encapsulation, abstraction, interfaces, and class relationships**. The project is organized into **two major tasks**:
4
8
5
-
1.**Library Management System**
6
-
2.**Taxable Interface Implementation**
9
+
1.**Library Management System**
10
+
2.**Taxable Interface Implementation**
7
11
8
12
---
9
13
@@ -17,6 +21,7 @@ This repository contains Java programs demonstrating essential Object-Oriented P
17
21
├── Employee.java
18
22
├── Product.java
19
23
├── Main.java
24
+
│
20
25
├── 1.a.png
21
26
├── 1.b.png
22
27
├── 1.c.png
@@ -25,16 +30,16 @@ This repository contains Java programs demonstrating essential Object-Oriented P
25
30
```
26
31
27
32
### File Overview
28
-
-**Book.java** – Defines the `Book` class with attributes `bookID`, `title`, `author`, and `isAvailable`.
29
-
-**Library.java** – Manages an array of `Book` objects; methods to add, remove, search, and display.
0 commit comments