Difference between revisions of "Bridge"
(→UML Structure) |
|||
Line 4: | Line 4: | ||
== UML Structure == | == UML Structure == | ||
+ | [[Image:http://www.dofactory.com/Patterns/Diagrams/bridge.gif]] | ||
== Applicability == | == Applicability == |
Revision as of 18:00, 1 March 2007
Contents
Introduction
The bridge pattern is a design pattern used in software developing, decouple an abstraction from its implementation so that the two can vary independently. It is also known as Handle or Body.
UML Structure
File:Http://www.dofactory.com/Patterns/Diagrams/bridge.gif
Applicability
Participants
Collaborations
Consequences
Implementation
Code Examples
Related Patterns
Abstract Factory Adapter