File: list_context_adapter_factory.py

package info (click to toggle)
enthought-traits-ui 2.0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 15,204 kB
  • ctags: 9,623
  • sloc: python: 45,547; sh: 32; makefile: 19
file content (34 lines) | stat: -rw-r--r-- 1,090 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
""" Context adapter factory for Python lists. """


# Enthought library imports.
from enthought.naming.api import ContextAdapterFactory

# Local imports.
from list_context_adapter import ListContextAdapter


class ListContextAdapterFactory(ContextAdapterFactory):
    """ Context adapter factory for Python lists. """

    #### 'ContextAdapterFactory' interface ####################################

    # The type of object that we adapt.
    adaptee_class = list

    ###########################################################################
    # Protected 'AbstractAdapterFactory' interface.
    ###########################################################################

    def _adapt(self, adaptee, target_class, environment, context):
        """ Returns an adapter that adapts an object to the target class. """

        adapter = ListContextAdapter(
            adaptee     = adaptee,
            environment = environment,
            context     = context
        )

        return adapter
    
#### EOF ######################################################################