Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Amendments to factory-kit README.md #2305

Merged
merged 1 commit into from
Nov 16, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion factory-kit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ language: en
tags:
- Extensibility
---
## Also Known As

Abstract-Factory

## Intent

Expand All @@ -20,7 +23,7 @@ Real-world example

In plain words

> Factory kit is a configurable object builder.
> Factory kit is a configurable object builder, a factory to create factories.

**Programmatic Example**

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

## Related patterns

* [Builder](https://java-design-patterns.com/patterns/builder/)
* [Factory](https://java-design-patterns.com/patterns/factory/)
* [Abstract-Factory](https://java-design-patterns.com/patterns/abstract-factory/)

## Tutorials

* [Factory kit implementation tutorial](https://diego-pacheco.medium.com/factory-kit-pattern-66d5ccb0c405)

## Credits

Expand Down