Pattern focus: Decorator pattern

The decorator pattern is a pretty straightforward pattern that utilizes wrapping to extend existing classes with new functionality. It’s commonly used to apply cross-cutting concerns on top of business classes, which avoids mixing that up with the business logic. Frameworks Continue reading

Posted in Code Design, design patterns | Tagged Decorator pattern, design patterns, Refactoring | 3 Replies