Event:
a class which keeps something to be executed in the future Basically you load code into it. If 'Perform'ed, it
executes the code.
- event
- a class which keeps something to be executed in the future
Methods
|
|
Perform
RefersTo
__init__
__str__
|
|
Perform
|
Perform ( self )
execute the code in self.code
|
|
RefersTo
|
RefersTo ( self, pWhom )
|
|
__init__
|
__init__ (
self,
pObject=None,
pCode=None,
pCmd=None,
)
|
|
__str__
|
__str__ ( self )
prints an Event and code to be executed, called with str(self)
|
|