Source code for RsSmbv.Implementations.Source.Bb.Eutra.Downlink.Subf.Encc.Pdcch.DcRegs

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class DcRegsCls: """DcRegs commands group definition. 4 total commands, 4 Subgroups, 0 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("dcRegs", core, parent) @property def data(self): """data commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_data'): from .Data import DataCls self._data = DataCls(self._core, self._cmd_group) return self._data @property def dselect(self): """dselect commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_dselect'): from .Dselect import DselectCls self._dselect = DselectCls(self._core, self._cmd_group) return self._dselect @property def pattern(self): """pattern commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_pattern'): from .Pattern import PatternCls self._pattern = PatternCls(self._core, self._cmd_group) return self._pattern @property def trSource(self): """trSource commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_trSource'): from .TrSource import TrSourceCls self._trSource = TrSourceCls(self._core, self._cmd_group) return self._trSource def clone(self) -> 'DcRegsCls': """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 = DcRegsCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group