Sophie

Sophie

distrib > Fedora > 18 > x86_64 > media > updates > by-pkgid > c66175b08690d24bca431460aac64d89 > files > 14

python-envisage-doc-4.3.0-3.fc18.noarch.rpm

""" The default implementation of the 'IMessage' interface. """


# Enthought library imports.
from traits.api import HasTraits, Str, implements

# Local imports.
from i_message import IMessage


class Message(HasTraits):
    """ The default implementation of the 'IMessage' interface. """

    implements(IMessage)

    # The author of the message.
    author = Str

    # The text of the message.
    text = Str

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