Ejemplo n.º 1
0
class I(Interface):

    name = TextLine()
    first = TextLine()
    last = TextLine()
    email = TextLine()
    address = TextLine()
    getfoo, setfoo = accessors(TextLine())
    extra1 = TextLine()
    extra2 = TextLine(required=False)
Ejemplo n.º 2
0
class IExtendedContent(IContent):
    getBaz, setBaz = accessors(Baz())
    getAnotherBaz, setAnotherBaz = accessors(Baz())
    shazam = Foo()
Ejemplo n.º 3
0
        class I(Interface):

            getFoo, setFoo = accessors(field)
            def bar(): pass
            x = Text()
Ejemplo n.º 4
0
class I(Interface):
    foo = TextLine(title=u"Foo")
    bar = TextLine(title=u"Bar")
    a = TextLine(title=u"A")
    b = TextLine(title=u"B", min_length=0, required=False)
    getbaz, setbaz = accessors(TextLine(title=u"Baz"))
Ejemplo n.º 5
0
        class I(Interface):

            getFoo, setFoo = accessors(field)