class test(Plugin): def __init__(self): print "Constructor" def onStart(self): print "Start - state = " + str(self.context.state) def onStop(self): print "Stop - state = " + str(self.context.state)