File: plugin_event.py

package info (click to toggle)
python-envisagecore 3.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,096 kB
  • ctags: 1,063
  • sloc: python: 4,115; makefile: 7; sh: 5
file content (14 lines) | stat: -rw-r--r-- 344 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
""" A plugin event. """


# Enthought library imports.
from enthought.traits.api import Instance, Vetoable


class PluginEvent(Vetoable):
    """ A plugin event. """

    # The plugin that the event is for.
    plugin = Instance('enthought.envisage.api.IPlugin')

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