SLIDE 1
2
Facade Design Pattern Eric McCreath Overview In this lecture we - - PowerPoint PPT Presentation
Facade Design Pattern Eric McCreath Overview In this lecture we will: define the facade design pattern, review a simple example, discuss when the facade is useful, and provide some examples of using this design pattern. 2 Definition The
2
3
Your code Library Code Your code Library Code Facade Without the Facade the code would directly access the library. The Facade "Funnels" the access to the library.
4
public class LoadSaveFacade { static String load(String filename) { : : } static boolean save(String filename, String text) { : : } }
5
6
7