Skip to content

Latest commit

 

History

History
14 lines (8 loc) · 561 Bytes

File metadata and controls

14 lines (8 loc) · 561 Bytes

Adapter and facade patterns

Adapter pattern

The Adapter Pattern converts the interface of a class into another interface the clients expect. Adapter lets classes work together that couldn’t otherwise because of incompatible interfaces.

Facade pattern

The Facade Pattern provides a unified interface to a set of interfaces in a subsystem. Facade defines a higher-level interface that makes the subsystem easier to use.