CSC/ECE 517 Fall 2012/ch2b 1w61 ps: Difference between revisions
Jump to navigation
Jump to search
Line 13: | Line 13: | ||
=== 5. [http://www.blackwasp.co.uk/Facade.aspx Facade design pattern]=== | === 5. [http://www.blackwasp.co.uk/Facade.aspx Facade design pattern]=== | ||
== Video tutorials on Facade pattern == | |||
=== 1. [http://www.youtube.com/watch?v=wFOCmN5zNHA JAVA: Facade Design Pattern] === | |||
This video talks about the Facade design pattern along with the UML diagram and facade pattern implementation examples from the JDK. It also talks about the advantages and the scenarios in which this pattern can be used. | |||
== 2. [http://www.youtube.com/watch?v=WLjvNpP6yeQ&feature=related Facade pattern]== | |||
This video explains the Facade pattern in detail along with a walk through of the code example. The link to the code is also provided in the video description. | |||
==Comparison == | ==Comparison == |
Revision as of 00:33, 19 November 2012
Facade, directory of sites
Introduction
GoF definition for facade design pattern is, "Provide a unified interface to a set of interfaces in a subsystem. Facade Pattern defines a higher-level interface that makes the subsystem easier to use."
Directory of Sites
1. Facade pattern (Wikipedia)
2. Design Patterns Uncovered: The Facade Pattern
3. SourceMaking : Facade Design Pattern
4. Thecafetechno : Facade Design Pattern
5. Facade design pattern
Video tutorials on Facade pattern
1. JAVA: Facade Design Pattern
This video talks about the Facade design pattern along with the UML diagram and facade pattern implementation examples from the JDK. It also talks about the advantages and the scenarios in which this pattern can be used.
2. Facade pattern
This video explains the Facade pattern in detail along with a walk through of the code example. The link to the code is also provided in the video description.