Source: Structural Design Patterns

Origin: https://refactoring.guru/design-patterns/structural-patterns Raw file: raw/articles/Structural Design Patterns.md

Summary

A card-index page from refactoring.guru listing the seven GoF structural patterns with one-sentence descriptions each. The raw clip contains only the pattern names, thumbnail images, and brief taglines — no structural diagrams, code, or extended discussion.

Detailed content for the wiki concept pages was drawn from GoF canonical knowledge / training data.

Patterns covered

PatternOne-line description
Adapter PatternAllows objects with incompatible interfaces to collaborate
Bridge PatternSplits abstraction and implementation into two independent hierarchies
Composite PatternComposes objects into trees; treats individual objects and compositions uniformly
Decorator PatternAttaches new behaviours by wrapping objects in decorator objects
Facade PatternProvides a simplified interface to a complex subsystem
Flyweight PatternShares common state between many fine-grained objects to save memory
Proxy PatternProvides a substitute that controls access to another object

Wiki pages produced