Presentation is loading. Please wait.

Presentation is loading. Please wait.

The Decorator Pattern Decorators in Java I/O classes SE-2811 Dr. Mark L. Hornick 1.

Similar presentations


Presentation on theme: "The Decorator Pattern Decorators in Java I/O classes SE-2811 Dr. Mark L. Hornick 1."— Presentation transcript:

1 The Decorator Pattern Decorators in Java I/O classes SE-2811 Dr. Mark L. Hornick 1

2 Decorator Pattern context You want to attach additional functionality to an (existing) class dynamically… …without having to resort to sub-classing the existing class We don’t want a class explosion We want to allow classes to be easily “extended” to incorporate new behavior without modifying existing code. Existing classes are closed to modification 2

3 SE-2811 Dr. Mark L. Hornick 3

4 Summary Decorators have the same super-type as the objects they decorate. One or more decorators can be used to wrap an object. Given that the decorator has the same super-type as the object it decorates, we can pass around a decorated object in place of the original (wrapped) object. The decorator adds its own behavior either before and/or after delegating to the object it decorates to do the rest of the job. Objects can be decorated at any time, so we can decorate objects at runtime with as many decorators as we like. The Decorator pattern favors Encapsulation in place of Extension aka the Open-Closed Principle

5 The java.io package contains dozens of classes for I/O OutputStream, FileOutputStream, PipedOutputStream, DataOutputStream, ObjectOutputStream, PrintStream, PrintWriter, … Understanding the associations between them just by reading the Javadoc API is difficult SE-2811 Dr. Mark L. Hornick 5

6 Knowing that the input stream classes are based on the Decorator pattern can make things easier: SE-2811 Dr. Mark L. Hornick 6

7 The Decorator pattern applied to input streams SE-2811 Dr. Mark L. Hornick 7

8 You can create custom stream decorators by extending FilterOutputStream and FilterInputStream Demonstration/Exercise SE-2811 Dr. Mark L. Hornick 8


Download ppt "The Decorator Pattern Decorators in Java I/O classes SE-2811 Dr. Mark L. Hornick 1."

Similar presentations


Ads by Google