Jump to content

Adapter pattern

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by Vghuston (talk | contribs) at 02:10, 6 October 2007 (→‎External links). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

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. 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. For instance, if multiple boolean values are stored as a single integer but your consumer requires a 'true'/'false', the adapter would be responsible for extracting the appropriate values from the integer value.

There are two types of adapter patterns:

  • The Object Adapter pattern - In this type of adapter pattern, the adapter contains an instance of the class it wraps. In this situation, the adapter makes calls to the instance of the wrapped object.
The object adapter pattern expressed in UML. The adapter hides the adaptee's interface from the client.
  • The Class Adapter pattern - This type of adapter uses multiple inheritance to achieve its goal. The adapter is created inheriting interfaces from both the interface that is expected and the interface that is pre-existing. Note that when the adapter must adapt multiple adaptees, the Class Adapter pattern cannot be used in languages such as Java that do not support multiple inheritance.
The class adapter pattern expressed in UML.

The adapter pattern is useful in situations where an already existing class provides some or all of the services you need but does not use the interface you need. A good real life example is an adapter that converts the interface of a Document Object Model of an XML document into a tree structure that can be displayed. A link to a tutorial that uses the adapter design pattern is listed in the links below.

Sample - Class Adapter

 /**
  * Java code sample 
  */
 
 interface Stack
 {
   void push (Object o);
   Object pop ();
   Object top ();
 }
 
 /* DoubleLinkedList */
 class DList
 {
   public void insert (DNode pos, Object o) { ... }
   public void remove (DNode pos) { ... }
   
   public void insertHead (Object o) { ... }
   public void insertTail (Object o) { ... }
   
   public Object removeHead () { ... }
   public Object removeTail () { ... }
   
   public Object getHead () { ... }
   public Object getTail () { ... }
 }
 
 /* Adapt DList class to Stack interface */
 class DListImpStack extends DList implements Stack
 {
   public void push (Object o) {
     insertTail (o);
   }
   
   public Object pop () {
     return removeTail ();
   }
   
   public Object top () {
     return getTail ();
   }
 }