Tagged Questions
The decorator-chaining tag has no wiki summary.
1
vote
3answers
474 views
Decorator Chaining of Repositories and Specialized Repositories with Dependancy Injection
Right now I'm trying to figure out a way to do things smarter, and in the course of doing so all i've managed to do is use a full bottle of excedrin in a single day.
Assume i have an interface called ...
0
votes
4answers
119 views
Does it matter when a decorator gets called (at the beginning or at the end of the method) in the decorator pattern?
I'm implementing a decorator pattern in Javascript.
I've seen the example here in Wikipedia
// Class to be decorated
function Coffee() {
this.cost = function() {
return 1;
};
}
// ...