Decorator: Introduction

Get a brief introduction to the Decorator design pattern.

The Decorator design pattern allows developers to modify the functionality of existing objects without modifying the objects themselves. Just like the Adapter pattern, the Decorator pattern provides a wrapper for an existing object. ...