Source code for RsFsw.Implementations.Applications.K10x_Lte.Sense.Power.Achannel

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class AchannelCls: """Achannel commands group definition. 20 total commands, 13 Subgroups, 0 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("achannel", core, parent) @property def aaChannel(self): """aaChannel commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_aaChannel'): from .AaChannel import AaChannelCls self._aaChannel = AaChannelCls(self._core, self._cmd_group) return self._aaChannel @property def acPairs(self): """acPairs commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_acPairs'): from .AcPairs import AcPairsCls self._acPairs = AcPairsCls(self._core, self._cmd_group) return self._acPairs @property def agChannels(self): """agChannels commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_agChannels'): from .AgChannels import AgChannelsCls self._agChannels = AgChannelsCls(self._core, self._cmd_group) return self._agChannels @property def gap(self): """gap commands group. 1 Sub-classes, 0 commands.""" if not hasattr(self, '_gap'): from .Gap import GapCls self._gap = GapCls(self._core, self._cmd_group) return self._gap @property def mode(self): """mode commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_mode'): from .Mode import ModeCls self._mode = ModeCls(self._core, self._cmd_group) return self._mode @property def preset(self): """preset commands group. 1 Sub-classes, 0 commands.""" if not hasattr(self, '_preset'): from .Preset import PresetCls self._preset = PresetCls(self._core, self._cmd_group) return self._preset @property def reference(self): """reference commands group. 1 Sub-classes, 0 commands.""" if not hasattr(self, '_reference'): from .Reference import ReferenceCls self._reference = ReferenceCls(self._core, self._cmd_group) return self._reference @property def sbcount(self): """sbcount commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_sbcount'): from .Sbcount import SbcountCls self._sbcount = SbcountCls(self._core, self._cmd_group) return self._sbcount @property def sblock(self): """sblock commands group. 7 Sub-classes, 0 commands.""" if not hasattr(self, '_sblock'): from .Sblock import SblockCls self._sblock = SblockCls(self._core, self._cmd_group) return self._sblock @property def ssetup(self): """ssetup commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_ssetup'): from .Ssetup import SsetupCls self._ssetup = SsetupCls(self._core, self._cmd_group) return self._ssetup @property def txChannel(self): """txChannel commands group. 1 Sub-classes, 0 commands.""" if not hasattr(self, '_txChannel'): from .TxChannel import TxChannelCls self._txChannel = TxChannelCls(self._core, self._cmd_group) return self._txChannel @property def uaaChannel(self): """uaaChannel commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_uaaChannel'): from .UaaChannel import UaaChannelCls self._uaaChannel = UaaChannelCls(self._core, self._cmd_group) return self._uaaChannel @property def evm(self): """evm commands group. 1 Sub-classes, 0 commands.""" if not hasattr(self, '_evm'): from .Evm import EvmCls self._evm = EvmCls(self._core, self._cmd_group) return self._evm def clone(self) -> 'AchannelCls': """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 = AchannelCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group