Skip to content

Commit dc0afb8

Browse files
authored
docs: Amendments to factory-kit README (iluwatar#2305)
1 parent 63ef157 commit dc0afb8

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

factory-kit/README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ language: en
55
tags:
66
- Extensibility
77
---
8+
## Also Known As
9+
10+
Abstract-Factory
811

912
## Intent
1013

@@ -20,7 +23,7 @@ Real-world example
2023
2124
In plain words
2225

23-
> Factory kit is a configurable object builder.
26+
> Factory kit is a configurable object builder, a factory to create factories.
2427
2528
**Programmatic Example**
2629

@@ -110,11 +113,17 @@ Use the Factory Kit pattern when
110113
* A new instance of a custom builder is needed instead of a global one
111114
* The types of objects that the factory can build need to be defined outside the class
112115
* The builder and creator interfaces need to be separated
116+
* Game developments and other applications that have user customisation
113117

114118
## Related patterns
115119

116120
* [Builder](https://java-design-patterns.com/patterns/builder/)
117121
* [Factory](https://java-design-patterns.com/patterns/factory/)
122+
* [Abstract-Factory](https://java-design-patterns.com/patterns/abstract-factory/)
123+
124+
## Tutorials
125+
126+
* [Factory kit implementation tutorial](https://diego-pacheco.medium.com/factory-kit-pattern-66d5ccb0c405)
118127

119128
## Credits
120129

0 commit comments

Comments
 (0)