This is a UML class diagram example for the Bridge design pattern.
Purpose
Defines an abstract object structure independently of the implementation object structure in order to limit coupling.
Use When
- Abstractions and implementations should not be bound at compile time.
- Abstractions and implementations should be independently extensible.
- Changes in the implementation of an abstraction should have no impact on clients.
- Implementation details should be hidden from the client.
Import into your Project
Open diagram in Visual Paradigm [?]Copy the URL below, paste it in the Open Project windows of Visual Paradigm and press Enter to open it |
Posted by: Carol Sandusky
Next Read: Composite »