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
Copy file name to clipboardExpand all lines: README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,24 +3,24 @@
3
3
4
4
5
5
##Abstract Factory
6
-
Intent: Provide an interface for creating families of related or dependent objects without specifying their concrete classes.
6
+
**Intent:** Provide an interface for creating families of related or dependent objects without specifying their concrete classes.
7
7
8
8
9
9
##Builder
10
-
Intent: Separate the construction of a complex object from its representation so that the same construction process can create different representations.
10
+
**Intent:** Separate the construction of a complex object from its representation so that the same construction process can create different representations.
11
11
12
12
13
13
##Factory Method
14
-
Intent: Define an interface for creating an object, but let subclasses decide which class to instantiate. Factory Method lets a class defer instantiation to subclasses.
14
+
**Intent:** Define an interface for creating an object, but let subclasses decide which class to instantiate. Factory Method lets a class defer instantiation to subclasses.
15
15
16
16
##Prototype
17
-
Intent: Specify the kinds of objects to create using a prototypical instance, and create new objects by copying this prototype.
17
+
**Intent:** Specify the kinds of objects to create using a prototypical instance, and create new objects by copying this prototype.
18
18
19
19
##Singleton
20
-
Intent: Ensure a class only has one instance, and provide a global point of access to it.
20
+
**Intent:** Ensure a class only has one instance, and provide a global point of access to it.
21
21
22
22
##Adapter
23
-
Intent: Convert the interface of a class into another interface clients expect. Adapter lets classes work together that couldn't otherwise because of incompatible interfaces.
23
+
**Intent:** Convert the interface of a class into another interface clients expect. Adapter lets classes work together that couldn't otherwise because of incompatible interfaces.
24
24
25
25
##Bridge
26
-
Intent: Decouple an abstraction from its implementationso that the two can vary independently.
26
+
**Intent:** Decouple an abstraction from its implementationso that the two can vary independently.
0 commit comments