Home | Trees | Indices | Help |
|
---|
|
This class shall serve as a representation of a parameter.
It might be useful if a little more information than the pure parameter value is required (or even only useful).
Each parameter must have a value. However additional property can be passed to the constructor and will be stored in the object.
BIG ASSUMPTION: stored values are not mutable, ie nobody should do
cls.parameter1[:] = ...
or we wouldn't know that it was changed
Here is a list of possible property names:
min - minimum value max - maximum value step - increment/decrement stepsize
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
Inherited from Inherited from Inherited from |
|
|||
default = property(fget= lambda x: x.__default, fset= setDefault)
|
|||
value = property(fget= lambda x: x._value, fset= _set)
|
|||
Inherited from |
|
|||
Inherited from |
|
Specify a parameter by its default value and optionally an arbitrary number of additional parameters. TODO: :Parameters: for Parameter
|
|
|
|
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Thu Apr 2 18:37:09 2009 | http://epydoc.sourceforge.net |