Sophie

Sophie

distrib > Fedora > 18 > i386 > by-pkgid > 2f465c7af448b596f18821b95c37334d > files > 295

python-Traits-4.3.0-1.fc18.i686.rpm

#  Copyright (c) 2007, Enthought, Inc.
#  License: BSD Style.

# prototype_prefix.py --- Examples of PrototypedFrom() prefix parameter

#--[Imports]--------------------------------------------------------------------
from traits.api import PrototypedFrom, Float, HasTraits, Instance, Str

#--[Code]-----------------------------------------------------------------------

class Parent (HasTraits):
    first_name = Str
    family_name = ''
    favorite_first_name = Str
    child_allowance = Float(1.00)

class Child (HasTraits):
    __prefix__ = 'child_'
    first_name = PrototypedFrom('mother', 'favorite_*')
    last_name  = PrototypedFrom('father', 'family_name')
    allowance  = PrototypedFrom('father', '*')
    father     = Instance(Parent)
    mother     = Instance(Parent)

#--[Example*]-------------------------------------------------------------------

fred = Parent( first_name = 'Fred',
               family_name = 'Lopez',
               favorite_first_name = 'Diego',
               child_allowance = 5.0 )

maria = Parent( first_name = 'Maria',
                family_name = 'Gonzalez',
                favorite_first_name = 'Tomas',
                child_allowance = 10.0 )

nino = Child( father=fred, mother=maria )

print '%s %s gets $%.2f for allowance' % (nino.first_name, nino.last_name, nino.allowance)