Source code for RsCmwWlanMeas.Implementations.MultiEval.Sinfo.Lsig

from .....Internal.Core import Core
from .....Internal.CommandsGroup import CommandsGroup


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class LsigCls: """Lsig commands group definition. 5 total commands, 5 Subgroups, 0 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("lsig", core, parent) @property def rate(self): """rate commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_rate'): from .Rate import RateCls self._rate = RateCls(self._core, self._cmd_group) return self._rate @property def reserved(self): """reserved commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_reserved'): from .Reserved import ReservedCls self._reserved = ReservedCls(self._core, self._cmd_group) return self._reserved @property def length(self): """length commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_length'): from .Length import LengthCls self._length = LengthCls(self._core, self._cmd_group) return self._length @property def parity(self): """parity commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_parity'): from .Parity import ParityCls self._parity = ParityCls(self._core, self._cmd_group) return self._parity @property def tail(self): """tail commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_tail'): from .Tail import TailCls self._tail = TailCls(self._core, self._cmd_group) return self._tail def clone(self) -> 'LsigCls': """Clones the group by creating new object from it and its whole existing subgroups Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group""" new_group = LsigCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group