|
This post originated from an RSS feed registered with Java Buzz
by justin cater.
|
Original Post: Decorator Design Pattern
Feed Title: Java Code Geeks
Feed URL: http://feeds.feedburner.com/JavaCodeGeeks
Feed Description: Java 2 Java Developers Resource Center
|
Latest Java Buzz Posts
Latest Java Buzz Posts by justin cater
Latest Posts From Java Code Geeks
|
|
After getting introduced to Design Patterns we have so far examined the following patterns:
Now, we will now get to know the Decorator Design Pattern.
The intent of the Decorator Design Pattern is to attach additional responsibilities to an object dynamically. Decorators provide a flexible alternative to sub-classing for extending functionality. The pattern is used to extend the functionality of an object dynamically without having to change the original class source or using inheritance. This is accomplished by creating an object wrapper referred to as a Decorator around the actual object.
Via a real life example, you will learn how and when the Decorator design pattern should be used and how to structure your code in order to implement it. You will see how it can lead to elegant solutions to code problems.
Get started here
Read: Decorator Design Pattern