class documentation

class ModelAccess:

View In Hierarchy

Model access class.
Method __enter__ Entering the context kills possibly running calculation if recalculation is enabled.
Method __exit__ Leaving the context starts recalculation if enabled; otherwise, just redraw.
Method __init__ Initializes model access.
Class Variable DebugValidity Undocumented
Instance Variable gui Undocumented
Instance Variable _recalculate Undocumented
def __enter__(self):
Entering the context kills possibly running calculation if recalculation is enabled.
def __exit__(self, _exc_type, _exc_val, _exc_tb):
Leaving the context starts recalculation if enabled; otherwise, just redraw.
Parameters
_exc_type:Optional[Type[BaseException]]Undocumented
_exc_val:Optional[BaseException]Undocumented
_exc_tb:Optional[TracebackType]Undocumented
def __init__(self, gui, recalculate):
Initializes model access.
Parameters
gui:GUIGUI
recalculate:boolEnable to recalculate upon exiting the context
DebugValidity: bool =

Undocumented

gui =

Undocumented

_recalculate =

Undocumented