Java / Design Patterns
What is Decorator pattern in Java?
The decorator pattern (also known as Wrapper) is a design pattern that allows behavior to be added to an individual object, either statically or dynamically, without affecting or modifying the existing behavior of other objects from the same class.
The Decorator is known as a structural pattern.
More Related questions...