|
|
An adapter allows classes to work together that normally could not because of incompatible interfaces by wrapping its own interface around that of an already existing class. The adapter is also responsible for handling any logic necessary to transform data into a form that is useful for the consumer.
created by syam1224 on 2008-03-26 11:59:00
|
|
|
|
Adapter Design pattern in C# and VB.net

Convert the interface of a class into another interface clients expect. Adapter lets classes work together that couldn't otherwise because of incompatible interfaces.
http://www.dofactory.com/Patterns/PatternAdapter.a
created by syam1224 on 2008-03-26 12:18:11
|
|
Adapter pattern from Wikipedia

In computer programming, the adapter design pattern (often referred to as the wrapper pattern or simply a wrapper) 'adapts' one interface for a class into one that a client expects.
http://en.wikipedia.org/wiki/Adapter_pattern
created by syam1224 on 2008-03-26 12:16:12
|
|
Structural patterns Adapter

* Convert the interface of a class into another interface clients expect. Adapter lets classes work together that couldn't otherwise because of incompatible interfaces.
* Wrap an existing class with a new interface.
* Impedance match an old component to a new system
http://sourcemaking.com/design_patterns/adapter
created by syam1224 on 2008-03-26 12:10:50
|
|
object adapters and class adapters

Adapters come in two flavors, object adapters and class adapters. These two methods embody the difference between the use of inheritance and composition to solve problems.
http://www.exciton.cs.rice.edu/javaresources/Desig
created by syam1224 on 2008-03-26 12:00:44
|
|
Adapter from vincehuston.com

Convert the interface of a class into another interface clients expect. Adapter lets classes work together that couldn't otherwise because of incompatible interfaces
http://www.vincehuston.org/dp/adapter.html
created by syam1224 on 2008-03-26 12:12:26
|
|
Adapter Pattern in C#

Convert the interface of a class into another interface clients expect. Adapter lets classes work together that couldn't otherwise because of incompatible interfaces.
http://www.c-sharpcorner.com/UploadFile/rajeshvs/A
created by syam1224 on 2008-03-26 12:05:10
|
|
Adapters Design Pattern

Adapters are used to enable objects with different interfaces to communicate with each other.
http://cnx.org/content/m14623/latest/
created by syam1224 on 2008-03-26 12:07:53
|
|
|