Welcome to Foxite.COM Community Weblog Sign in | Join | Help

Design Patterns (RSS)

Design Patterns – The Façade

The façade is, perhaps, the second most commonly implemented design pattern. Just like the Bridge (probably the most widely used pattern of all, and certainly the most fundamental) it is usually implemented without a conscious decision having been made.
posted by andykr | 0 Comments
Filed Under:

Design Patterns - The Mediator

What is a mediator and how do I use it? The mediator describes one solution to a key issue that we all encounter whenever we try to design a new class. How to deal with situations where one object has to respond to changes in, or control the behavior
posted by andykr | 0 Comments
Filed Under:

Design Patterns - Adapters and Wrappers

What is an adapter and how do I use it? The adapter, as its name implies, describes a solution to the problem of making two disparate interfaces compatible by acting as a translation mechanism between them. How do I recognize where I need an adapter?
posted by andykr | 0 Comments
Filed Under:

Design Patterns – The Decorator

The decorator describes a solution to the problem of adding functionality to an object without actually changing any of the code in that object. How do I recognize where I need a decorator? The formal definition of the strategy, as given by “Design
posted by andykr | 0 Comments
Filed Under:

Design Patterns - The Chain of Responsibility

What is a chain of responsibility and how do I use it? In my last entry I stated that a strategy pattern described one solution to the problem of dealing with alternative implementations at run time. The Chain of Responsibility describes another pattern
posted by andykr | 0 Comments
Filed Under:

Design Patterns - The Strategy

What is a strategy and how do I use it? The strategy describes one solution to the main problem inherent in writing generic code - how to deal with unforeseen demands for changes in implementation. How do I recognize where I need a strategy?  The
posted by andykr | 1 Comments
Filed Under:

Design Patterns - The BRIDGE

As promised, I am starting a little series on Design Patterns, the first one to look at is the “Bridge” – ofter referred to as the “mother of all design patterns” because it is the most basic of all patterns and you will discover, as you become more familiar
posted by andykr | 0 Comments
Filed Under:

Introduction to Design Patterns

It’s been a while! It’s been a while since I have had the time to update my blog and there are several reasons for that, not least of which has been the good one that I have been extremely busy, professionally, working on a number of very interesting
posted by andykr | 0 Comments
Filed Under: