Tag: Adapter Pattern

The Adapter Pattern (sometimes called a wrapper) lets classes with incompatible interfaces work together.  … [the] pattern makes heavy use of delegation where the delegator is the adapter (or wrapper) and the delegate is the class being adapted.

– from Adapter Pattern at Wikipedia

 

The Adapter Pattern lets classes with incompatible interfaces work together.

– from Adapter Pattern at c2