Chapter 13. The Façade Pattern

In this chapter, we take up the Façade pattern. This pattern is used to wrap a set of complex classes into a simpler enclosing interface.

Frequently, as your programs evolve and develop, they grow in complexity. In fact, for all the excitement about the benefits of design patterns, these patterns sometimes generate so many classes that it is difficult to understand the program's flow. Furthermore, there may be a number of complicated subsystems, each of which has its own complex interface.

The Façade pattern allows you to simplify this complexity by providing a simplified interface to those subsystems. This simplification might in some cases reduce the flexibility of the underlying classes, but usually it provides ...

Get Java™ Design Patterns: A Tutorial now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.