doc: added reference to the `adapter desgin pattern` wikipedia article

This commit is contained in:
Zen-CODE 2014-06-29 17:52:19 +02:00
parent f5deaee5dc
commit 86c7bec918
1 changed files with 3 additions and 1 deletions

View File

@ -6,7 +6,9 @@ Adapters
An adapter is an intermediating controller-type class that builds views An adapter is an intermediating controller-type class that builds views
for top-level widgets, interacting with data as prescribed by parameters. for top-level widgets, interacting with data as prescribed by parameters.
On the view side is :class:`AbstractView`, which is the base view for Kivy adapters are modelled on the
`Adapter design pattern <http://en.wikipedia.org/wiki/Adapter_pattern>`_.
On the view side is an :class:`AbstractView`, which is the base view for a
:class:`ListView`. :class:`ListView`.
- **Adapters**: The base :class:`Adapter` is subclassed by - **Adapters**: The base :class:`Adapter` is subclassed by