Open main menu
Home
Random
Recent changes
Special pages
Community portal
Preferences
About Wikipedia
Disclaimers
Incubator escapee wiki
Search
User menu
Talk
Dark mode
Contributions
Create account
Log in
Editing
Adapter pattern
(section)
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
=== UML class diagram === [[File:w3sDesign Adapter Design Pattern UML.jpg|frame|none|A sample UML class diagram for the adapter design pattern.<ref name="Structure"/>]] In the above [[Unified Modeling Language|UML]] [[class diagram]], the <code>client</code> class that requires a <code>target</code> interface cannot reuse the <code>adaptee</code> class directly because its interface doesn't conform to the <code>target</code> interface. Instead, the <code>client</code> works through an <code>adapter</code> class that implements the <code>target</code> interface in terms of <code>adaptee</code>: * The <code>object adapter</code> way implements the <code>target</code> interface by delegating to an <code>adaptee</code> object at run-time (<code>adaptee.specificOperation()</code>). * The <code>class adapter</code> way implements the <code>target</code> interface by inheriting from an <code>adaptee</code> class at compile-time (<code>specificOperation()</code>).
Edit summary
(Briefly describe your changes)
By publishing changes, you agree to the
Terms of Use
, and you irrevocably agree to release your contribution under the
CC BY-SA 4.0 License
and the
GFDL
. You agree that a hyperlink or URL is sufficient attribution under the Creative Commons license.
Cancel
Editing help
(opens in new window)