Skip to content

Commit 5dbb176

Browse files
authored
docs: Add tutorial links for Adapter pattern (iluwatar#525) (iluwatar#1882)
1 parent e3c3b02 commit 5dbb176

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

adapter/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,12 @@ Use the Adapter pattern when
105105
* you need to use several existing subclasses, but it's impractical to adapt their interface by subclassing every one. An object adapter can adapt the interface of its parent class.
106106
* most of the applications using third party libraries use adapters as a middle layer between the application and the 3rd party library to decouple the application from the library. If another library has to be used only an adapter for the new library is required without having to change the application code.
107107

108+
## Tutorials
109+
110+
* [Dzone](https://dzone.com/articles/adapter-design-pattern-in-java)
111+
* [Refactoring Guru](https://refactoring.guru/design-patterns/adapter/java/example)
112+
* [Baeldung](https://www.baeldung.com/java-adapter-pattern)
113+
108114
## Consequences
109115
Class and object adapters have different trade-offs. A class adapter
110116

0 commit comments

Comments
 (0)