File: trait_dict_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 (41 lines) | stat: -rw-r--r-- 1,389 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
35
36
37
38
39
40
41
""" Context adapter factory for trait dicts. """


# Enthought library imports.
from enthought.naming.api import ContextAdapterFactory
from enthought.traits.api import Str, TraitDict

# Local imports.
from trait_dict_context_adapter import TraitDictContextAdapter


class TraitDictContextAdapterFactory(ContextAdapterFactory):
    """ Context adapter factoryfor Python trait dicts. """

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

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

    #### 'TraitDictContextAdapterFactory' interface ###########################

    # The name of the trait (on the adaptee) that provides the trait dict.
    trait_name = Str
    
    ###########################################################################
    # Protected 'AbstractAdapterFactory' interface.
    ###########################################################################

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

        adapter = TraitDictContextAdapter(
            adaptee     = adaptee,
            environment = environment,
            context     = context,
            trait_name  = self.trait_name
        )

        return adapter

#### EOF ######################################################################