File tree Expand file tree Collapse file tree 1 file changed +23
-12
lines changed Expand file tree Collapse file tree 1 file changed +23
-12
lines changed Original file line number Diff line number Diff line change @@ -15,19 +15,30 @@ This repository contains Java programs demonstrating essential Object-Oriented P
1515## 📁 Project Structure
1616
1717```
18- .
19- ├── Book.java
20- ├── Library.java
21- ├── Taxable.java
22- ├── Employee.java
23- ├── Product.java
24- ├── Main.java
18+ java-oop-interfaces-abstraction/
2519│
26- ├── 1.a.png
27- ├── 1.b.png
28- ├── 1.c.png
29- ├── 1.d.png
30- └── 2.png
20+ ├── .github/workflows/
21+ │ └── java-build.yml
22+ │
23+ ├── screenshots/
24+ │ ├── 1.a.png
25+ │ ├── 1.b.png
26+ │ ├── 1.c.png
27+ │ ├── 1.d.png
28+ │ └── 2.png
29+ │
30+ ├── src/
31+ │ ├── Book.java
32+ │ ├── BookManagementSystem.java
33+ │ ├── Employee.java
34+ │ ├── Library.java
35+ │ ├── Main.java
36+ │ ├── Product.java
37+ │ └── Taxable.java
38+ │
39+ ├── LICENSE
40+ └── README.md
41+
3142```
3243
3344### File Overview
You can’t perform that action at this time.
0 commit comments