Skip to content

Commit 25511f7

Browse files
Proxy Pattern Docs Added
1 parent 2a67880 commit 25511f7

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

content/Proxy Pattern.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
---
2+
title: Proxy Pattern
3+
---

content/index.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,11 @@ created: 2025-02-07
77
**Design patterns** are typical solutions to commonly occurring problems in software design. They are like pre-made blueprints that you can customize to solve a recurring design problem in your code.
88
## Three Main Patterns
99

10-
- **Creational patterns** provide object creation mechanisms that increase flexibility and reuse of existing code. #creational
10+
- **Creational patterns** provide object creation mechanisms that increase flexibility and reuse of existing code. **Purpose**: How Objects are created. #creational
1111
- **Structural patterns** explain how to assemble objects and classes into larger structures, while keeping these structures flexible and efficient. #structural
12+
**Purpose:** Organize classes and objects to form bigger structures safely.
1213
- **Behavioral patterns** take care of effective communication and the assignment of responsibilities between objects. #behavioral
14+
**Purpose:** How objects communicate and behave with each other.
1315

1416
> [!Important] Prerequisite
1517
>Must have knowledge of **OOPS (Object-Oriented Programming Principles)** and **Java**. The design patterns are primarily based on OOPS concepts. The code in this tutorial is mainly written in Java and related frameworks.

0 commit comments

Comments
 (0)