def __init__ |
( |
|
self, |
|
|
|
pluginName |
|
) |
| |
Create a Plugin instance.
1 myPlugin = Plugin (
"tel_add_noise")
def getProperty |
( |
|
self, |
|
|
|
name |
|
) |
| |
Get the value for a given propoerty in the plugin.
1 print myPlugin.getProperty(
"Sigma")
Retrieve the plugins version.
1 print plugin.getVersion()
def listOfProperties |
( |
|
self) | |
|
List all the properties in the plugin.
1 print myPlugin.listOfProperties()
def setProperty |
( |
|
self, |
|
|
|
name, |
|
|
|
value |
|
) |
| |
Set a given propoerty in the plugin.
1 myPlugin.setProperty (
"Sigma", 0.1)
The documentation for this class was generated from the following file: