Evaluating Software Design Patterns
— the "Gang of Four" patterns implemented in Java 6

Uses of Package
dk.rode.thesis.decorator

Packages that use dk.rode.thesis.decorator
dk.rode.thesis.decorator Implementations and examples of the Decorator design pattern [Gamma95, p.175]. 
dk.rode.thesis.iterator Implementations and examples of the Iterator design pattern [Gamma95, p.257]. 
dk.rode.thesis.proxy Implementations and examples of the Proxy design pattern [Gamma95, p.207]. 
dk.rode.thesis.visitor Implementations and examples of the Visitor design pattern [Gamma95, p.331]. 
 

Classes in dk.rode.thesis.decorator used by dk.rode.thesis.decorator
AppenderDecorator
          An appender decorator returns the String value from a decorated sequence prefixed and/or postfixed with values supplied at construction time, respectively.
DecoratedPolicy
          Additional policies for formatting decorated sequences into char sequences (not part of the core Decorator implementation).
DuplexDecorator
          A duplex sequence decorator returns the String value returned by the decorated sequence concatenated with the same value, for example x -> xx.
SequenceDecorator
          A sequence decorator is a decorator that forwards all request to the decorated Sequence without performing additional operations except for toString().
UppercaseDecorator
          An upper-case sequence decorator returns the string value returned by the decorated sequence in upper-case, for example a -> A.
 

Classes in dk.rode.thesis.decorator used by dk.rode.thesis.iterator
SequenceDecorator
          A sequence decorator is a decorator that forwards all request to the decorated Sequence without performing additional operations except for toString().
 

Classes in dk.rode.thesis.decorator used by dk.rode.thesis.proxy
SequenceDecorator
          A sequence decorator is a decorator that forwards all request to the decorated Sequence without performing additional operations except for toString().
 

Classes in dk.rode.thesis.decorator used by dk.rode.thesis.visitor
SequenceDecorator
          A sequence decorator is a decorator that forwards all request to the decorated Sequence without performing additional operations except for toString().
 


Gunni Rode / rode.dk

Feel free to use and/or modify the Java 6 source code developed for this thesis AT YOUR OWN RISK, but note that the source code comes WITHOUT ANY — and I do mean WITHOUT ANY — form of warranty WHAT SO EVER!

The original thesis and source code are available at rode.dk/thesis.