add Object Adapter

This commit is contained in:
Jakub Vojvoda
2016-09-14 23:11:29 +02:00
parent af3869d566
commit 8e3f112f6e
2 changed files with 72 additions and 2 deletions

View File

@@ -1,8 +1,9 @@
## Adapter
Convert the interface of a class into another interface clients expect.
Convert the interface of a class into another interface the clients expect.
Adapter lets classes work together that couldn't otherwise because of
incompatible interfaces.
incompatible interfaces, ie. allows to use a client with an incompatible
interface by an Adapter that does the conversion.
### When to use