Source code for RsSmbv.Implementations.Source.Bb.Tdscdma.Up.Cell.Slot.Channel.Dpcch.Eucc

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class EuccCls: """Eucc commands group definition. 4 total commands, 4 Subgroups, 0 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("eucc", core, parent) @property def ccount(self): """ccount commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_ccount'): from .Ccount import CcountCls self._ccount = CcountCls(self._core, self._cmd_group) return self._ccount @property def hpid(self): """hpid commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_hpid'): from .Hpid import HpidCls self._hpid = HpidCls(self._core, self._cmd_group) return self._hpid @property def rsNumber(self): """rsNumber commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_rsNumber'): from .RsNumber import RsNumberCls self._rsNumber = RsNumberCls(self._core, self._cmd_group) return self._rsNumber @property def tfci(self): """tfci commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_tfci'): from .Tfci import TfciCls self._tfci = TfciCls(self._core, self._cmd_group) return self._tfci def clone(self) -> 'EuccCls': """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 = EuccCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group