I just completed a course and in the course we discussed the decorator pattern. The decorator pattern is when you create a linked list of "decorators" that...
I like decorator pattern family ... Jim Trott _________________________________________________________________ Get your FREE download of MSN Explorer at...
James Trott
jjtrott@...
Jun 7, 2002 3:07 am
258
I'm not sure I agree with the need to find a new name. There is, I believe, a (usually implicit) understanding that the implementation of a pattern can have...
Chris: You are right that there are variations on patterns but I am trying to extend it a bit. In other words, I think about patterns as being about the ...
I checked the errata page and didn't find this one so I'll post it here. In the chapter on Adapter (page 104, second paragraph) the text compares Facade and...
Alan, No thoughts about the name, but I wouldn't include the version that is managed in the client in whatever-the-name-is. It seems to me that the essence of...
Charlie: I agree that the client shouldn't know what decorations are being applied - that is part of the extended decorator family (what I'm liking to call it ...
Hello, I just joined this list and my archive searches have not come up with any users of the Domain Neutral Component (DNC) that Peter Coad (Java Modeling In...
... I have read the book you mention and am just starting to use the DNC on my own. (Where I currently work it is hard to get people to understand what...
Does anybody know anything about aspecJ or aspect oriented programming? I continue to hear good things about it and have seen some interesting articlets at...
we will be converting all of our code examples into c#. this will take us another 1-2 months. We are already offering C# versions of our design patterns...
Sorry, but I must have missed that email. Where can somebody contribute to the community book. I 'm interested in contributing in the Java examples. Thanks. ...
John: Thanks for your interest. I think I originally had envisioned just putting things up on our site after people had posted it to the community. However, ...
I have this school assignment to do and i'm totally new to it, my lectures ain't giving us any lecture notes nor explaining more in details so i hope i can get...
well, not sure getting the answers from the experts is what you teacher had in mind ;) However, i'll give you a couple of clues to help out. It sounds like...
So is it Composite? ... teacher had ... not how ... a summary ... there). ... its ... by ... computer. ... new ... http://docs.yahoo.com/info/terms/...
the motivation for a composite is when you have a hierarchical structure (things contain things which can contain other things) and you want to treat all these...
Oh my gosh! I just found out that you're the author of one of my book, Design Patterns Explained, it's my school's recommend bk. I have some question about the...
Don't worry about your questions being stupid, they aren't. Regards the code, there is no constructor implemented. private Timekeeper(); should be private...
... Uh Oh, there goes Alan' hat size. :) ... You've got a colon there instead of a semi-colon. Also, this is a constructor, which is a method, so you're...
Scott L. Bain
slbain@...
Jul 10, 2002 3:18 pm
279
Hey, thanx (to BOTH! Alan & Scott)! I've done it! lol. Ya'know Alan, your book is currently SOLD OUT in my school's book store, and have to wait for 3 weeks...
Hi, In his book "Design Pattern Explained", Alan Shalloway illustrates the Bridge Pattern with shapes. I think I understand the main points, but something...
Good job. thanks for the info. Alan ... From: mscwp [mailto:mscwp@...] Sent: Wednesday, July 10, 2002 10:25 PM To: dpexplained@yahoogroups.com Subject:...
The bridge is about abstractions (shapes) using implementations (drawing programs). The problem with this example is that the primitives I am using in the...
It depends on whether the method in TourSch is static or not. If it is static, then you can call the method using the class name. Let's say the method is...