Exam Flashcards
What classification is the Bridge pattern?
Object Structural
What is the intent of the Bridge pattern?
Decouple an abstraction from its implementation so that the two can vary independently
The Bridge pattern involves what 2 different hierarchies?
- Abstraction
- Implementation
What are the 4 participants in the Bridge pattern?
- Abstraction
- RefinedAbstraction
- Implementor
- ConcreteImplementer
What else is the Bridge pattern known as?
Handle/Body
What does the abstraction class keep reference to in the Bridge pattern?
Object of type Implementor
What would instantiating an object using the Bridge pattern look like?
Abstraction name = new RefinedAbstraction(new ConcreteImplementor)
What are the collaborations for the Bridge pattern?
Abstraction forwards client requests to implementor
What classification is the Decorator pattern?
Object Structural
What is the intent of the Decorator pattern?
Attach additional responsibilities to an object dynamically. An alternative to subclassing
What else is the Decorator pattern known as?
Wrapper
What are the 4 participants of the Decorator pattern?
- Component
- ConcreteComponent
- Decorator
- ConcreteDecorator
What does the Decorator participant maintain reference to?
Component Object
What are the collaborations of the Decorator pattern?
Decorator forwards requests to its component object. It may optionally perform additional operations before and after forwarding requests.
What classification is the State pattern?
Object Behavioural
What is the intent of the State pattern?
Allow an object to alter its behaviour when its internal state changes. The object will appear to change its class.
What else is the State pattern known as?
Objects for States, Finite State Machine
What are the 3 participants of the State pattern?
- Context
- State
- ConcreteState
What does the context class do in a State pattern?
Maintains an instance of a ConcreteState subclass and defines the interface for clients
What 4 collaborations does the State pattern have?
- Context delegates state-specific requests to the current ConcreteState object
- Context can pass itself to the state object so the state can access the context
- Context is the interface for clients
- Context or ConcreteState can decide which state succeeds another
What classification is the Mediator pattern?
Object Behavioural
What is the intent of the Mediator pattern?
Define an object that encapsulates how a set of objects interact. Promotes loose coupling by keeping objects from referring to each other explicitly
What 3 participants are in the Mediator pattern?
- Mediator
- ConcreteMediator
- Colleague
What are the collaborations of the Mediator pattern?
Colleagues send and receive requests from the Mediator object. The Mediator routes these requests between colleagues
What classification is the Memento pattern?
Object Behavioural
What is the intent of the Memento pattern?
Without violating encapsulation, capture and externalize an object’s internal state so the object can be restored to this state later.
What else is the Memento pattern known as?
Token
What are the 3 participants of the Memento pattern?
- Memento
- Originator
- Caretaker
What are the 2 collaborations for the Memento pattern?
- Caretaker requests a memento from an originator, holds it, then if needed passes it back to the originator
- Mementos are passive: only the originator that created a memento will assign or retrieve its state
What classification is the Facade pattern?
Object Structural
What is the intent of the Facade pattern?
Provide a unified interface to a set of interfaces in a subsystem. Facade defines a higher-level interface that makes the subsystem easier to use.
What are the 2 participants of the Facade pattern?
- Facade
- Subsystem classes
What classification is the Observer pattern?
Object Behavioural
What is the intent of the Observer pattern?
Define a one-to-many dependency between objects so that when one object changes state, all its dependents are notified and updated automatically.
What else is the Observer pattern known as?
Dependents, Publish-Subscribe
What are the 4 participants in the Observer pattern?
- Subject
- Observer
- ConcreteSubject
- ConcreteObserver