add StaticText source, which can be used as a simple way to forward values between...
[enigma2.git] / lib / python / Components / Sources / Source.py
1 from Components.Element import Element
2
3 class Source(Element):
4         def execBegin(self):
5                 pass
6         
7         def execEnd(self):
8                 pass
9         
10         def onShow(self):
11                 pass
12
13         def onHide(self):
14                 pass
15         
16         def destroy(self):
17                 self.__dict__.clear()