Improve Adapter Javadoc
This commit is contained in:
parent
0a61d7b067
commit
8c6caa29b7
@ -1,7 +1,13 @@
|
|||||||
package com.iluwatar.adapter;
|
package com.iluwatar.adapter;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
|
* An adapter helps two incompatible interfaces to work together. This is the real
|
||||||
|
* world definition for an adapter. Interfaces may be incompatible but the inner
|
||||||
|
* functionality should suit the need. The Adapter design pattern allows otherwise
|
||||||
|
* incompatible classes to work together by converting the interface of one class
|
||||||
|
* into an interface expected by the clients.
|
||||||
|
* <p>
|
||||||
* There are two variations of the Adapter pattern: The class adapter implements
|
* There are two variations of the Adapter pattern: The class adapter implements
|
||||||
* the adaptee's interface whereas the object adapter uses composition to
|
* the adaptee's interface whereas the object adapter uses composition to
|
||||||
* contain the adaptee in the adapter object. This example uses the object
|
* contain the adaptee in the adapter object. This example uses the object
|
||||||
|
Loading…
x
Reference in New Issue
Block a user