DEV Community

Cover image for Facade Pattern | Design Patterns in Java
coder4life
coder4life

Posted on

Facade Pattern | Design Patterns in Java

Structural design pattern: Watch a Java implementation of the Facade Pattern which provides a simplified interface to a complex subsystem of classes. In this example the subsystem is related to document handling e.g. writing a document to different output formats. The facade is for creating these documents and hides the whole configuration and writing process through a simple write method.

Top comments (1)

Collapse
 
hanneslim profile image
hanneslim

Your video helped me to better understand the concept! I tried to program my own facade with Angular in typescript: nerd-corner.com/how-to-build-a-pus...