Skip to content

Commit 22f1676

Browse files
Java Design Pattern Setup and Updated the README Files
1 parent 79e48ba commit 22f1676

File tree

5 files changed

+26
-9
lines changed

5 files changed

+26
-9
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Java Design Patterns
2+
3+
Design pattern code covered in the book by **"Head First Design Patterns 2nd Edition"**. [View Book](https://www.pdfiles.net/storage/Books/headfirst/Head-First-Design-Patterns-2nd-Edition.pdf)
4+
5+
## Patterns Covered:
6+
7+
1. Strategy Pattern.
8+
2. Observer Pattern.
9+
3. Decorator Pattern
10+
11+
### Author: Prathamesh Dhande
554 Bytes
Binary file not shown.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
package Strategy;
2+
public class Index {
3+
public static void main(String[] args) {
4+
System.out.println("Starting the Strategy Pattern");
5+
}
6+
}

README.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
1-
# Java Tutorial
1+
# Java tutorial
22

3-
This repo contains Java Tutorial From Scratch <br/>
3+
All Files and Codes related to Java Codes and Technologies.
4+
5+
1. Java tutorial
6+
2. Design Patterns in Java.
47

5-
### Completed :
6-
1. Anagram Problem
7-
2. Reverse the Array
8-
3. Printing the Pattern
98

10-
### Project :
11-
The Related Project is in [Here](https://github.com/PrathameshDhande22/Employee-Management-System)
129

Tutorial/README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,7 @@ These Repository Contains all the Code files for the below topics.
4646
| 34 | Tut34.java | Generics |
4747
| 35 | Tut35.java | File Handling |
4848
| 36 | Tut36.java | Collection Framework - Stack, LinkedList, ArrayList |
49-
| 37 | Tut37.java | Outer and Inner Class |
49+
| 37 | Tut37.java | Outer and Inner Class |
50+
51+
### Project :
52+
The Related Project is in [Here](https://github.com/PrathameshDhande22/Employee-Management-System)

0 commit comments

Comments
 (0)