Two Laptop Bag
The moose likes OO, Patterns, UML and Refactoring and the fly likes decorator design pattern Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Engineering » OO, Patterns, UML and Refactoring
Reply Bookmark "decorator design pattern" Watch "decorator design pattern" New topic
Author

decorator design pattern

cherry hal
Greenhorn

Joined: May 06, 2012
Posts: 10
Hi,
Anybody can tell me about decorator designpattern
Punit Jain
Ranch Hand

Joined: Aug 20, 2011
Posts: 902
To extend or modify the behaviour of ‘an instance’ at runtime decorator design pattern is used.
Inheritance is used to extend the abilities of ‘a class’.
Unlike inheritance, you can choose any single object of a class and modify its behaviour leaving the other instances unmodified.
i mean if you use inheritance and extend super class to sub class, then say, you created 100 objects of that class, your class functionality will be in all the 100 objects.
but you want that functionality in 2 or 3 objects that time you can decorate that object run time, that is where decorator pattern is used.
Winston Gutkowski
Bartender

Joined: Mar 17, 2011
Posts: 4739
    
    7

cherry hal wrote:Anybody can tell me about decorator designpattern

It'd be too much to put here, but this might help.

Otherwise: Do you have a specific question about the pattern? Or something particular that you don't understand?

Winston


Isn't it funny how there's always time and money enough to do it WRONG?
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: decorator design pattern
 
Similar Threads
List of Patterns used in Java SE
EJB and pattern
Decorator Pattern ??
Is this a design pattern?
Decorator design pattern