-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (54 loc) · 2.82 KB
/
index.html
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
44
45
46
47
48
49
50
51
52
53
54
<p><a href="https://travis-ci.org/SaumilP/design-patterns"><img src="https://travis-ci.org/SaumilP/design-patterns.svg" alt="Build Status"></a> <a href="https://scan.coverity.com/projects/3816"><img src="https://scan.coverity.com/projects/3816/badge.svg" alt="Build Status"></a></p>
<h1 id="design-patterns-applied-in-java">Design Patterns Applied in Java</h1>
<p>As most of the developers know, design patterns providers solution to commonly occurring design problems. This repository contains few examples to clarify some of the patterns through non-traditional examples.</p>
<hr>
<h1 id="patterns">Patterns</h1>
<p>All Different patterns are divided into majorly four categories specified below.</p>
<h4 id="creational-patterns">Creational Patterns</h4>
<ul>
<li><a href="abstract-factory/index.html">Abstract Factory</a></li>
<li><a href="builder/index.html">Builder</a></li>
<li><a href="factory-method/index.html">Factory Method</a></li>
<li><a href="prototype/index.html">Prototype</a></li>
<li><a href="singleton/index.html">Singleton</a></li>
</ul>
<h4 id="structural-patterns/index.html">Structural Patterns</h4>
<ul>
<li><a href="adapter/index.html">Adapter</a></li>
<li><a href="bridge/index.html">Bridge</a></li>
<li><a href="facade/index.html">Facade</a></li>
<li><a href="flyweight/index.html">Flyweight</a></li>
<li><a href="composite/index.html">Composite</a></li>
<li><a href="decorator/index.html">Decorator</a></li>
<li><a href="proxy/index.html">Proxy</a></li>
<li><a href="service-locator/index.html">Service Locator</a></li>
<li><a href="filter/index.html">Criteria</a></li>
</ul>
<h4 id="behavioral-patterns/index.html">Behavioral Patterns</h4>
<ul>
<li><a href="chain/index.html">Chain Of Responsibilty</a></li>
<li><a href="command/index.html">Command</a></li>
<li><a href="iterator/index.html">Iterator</a></li>
<li><a href="interpreter/index.html">Interpreter</a></li>
<li><a href="mediator/index.html">Mediator</a></li>
<li><a href="memento/index.html">Memento</a></li>
<li><a href="model-view-presenter/index.html">Model-View-Presenter</a></li>
<li><a href="observer/index.html">Observer</a></li>
<li><a href="state/index.html">State</a></li>
<li><a href="strategy/index.html">Strategy</a></li>
<li><a href="template-method/index.html">Template Method</a></li>
<li><a href="visitor/index.html">Visitor</a></li>
</ul>
<h3 id="anti-patterns">Anti-Patterns</h3>
<ul>
<li><a href="double-checked-locking">Double-Checked Locking</a></li>
<li><a href="method-object">Method Object</a></li>
</ul>
<h3 id="hybrid-patterns">Hybrid Patterns</h3>
<ul>
<li><a href="state-machine">Finite State Machine</a></li>
<li><a href="pipes-and-filters">Pipes And Filters</a></li>
<li><a href="lazy-sequences">Lazy Sequences</a></li>
</ul>
<h1 id="issues">Issues</h1>
<p>Please feel free to contact me if you find any issues around the examples or relative object design.</p>