from .........Internal.Core import Core
from .........Internal.CommandsGroup import CommandsGroup
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class RdataCls:
"""Rdata commands group definition. 9 total commands, 9 Subgroups, 0 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("rdata", core, parent)
@property
def hoppingParam(self):
"""hoppingParam commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_hoppingParam'):
from .HoppingParam import HoppingParamCls
self._hoppingParam = HoppingParamCls(self._core, self._cmd_group)
return self._hoppingParam
@property
def nsubbands(self):
"""nsubbands commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_nsubbands'):
from .Nsubbands import NsubbandsCls
self._nsubbands = NsubbandsCls(self._core, self._cmd_group)
return self._nsubbands
@property
def offsetInd(self):
"""offsetInd commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_offsetInd'):
from .OffsetInd import OffsetIndCls
self._offsetInd = OffsetIndCls(self._core, self._cmd_group)
return self._offsetInd
@property
def prbNumber(self):
"""prbNumber commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_prbNumber'):
from .PrbNumber import PrbNumberCls
self._prbNumber = PrbNumberCls(self._core, self._cmd_group)
return self._prbNumber
@property
def prbStart(self):
"""prbStart commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_prbStart'):
from .PrbStart import PrbStartCls
self._prbStart = PrbStartCls(self._core, self._cmd_group)
return self._prbStart
@property
def prend(self):
"""prend commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_prend'):
from .Prend import PrendCls
self._prend = PrendCls(self._core, self._cmd_group)
return self._prend
@property
def rbOffset(self):
"""rbOffset commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_rbOffset'):
from .RbOffset import RbOffsetCls
self._rbOffset = RbOffsetCls(self._core, self._cmd_group)
return self._rbOffset
@property
def sfbmp(self):
"""sfbmp commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_sfbmp'):
from .Sfbmp import SfbmpCls
self._sfbmp = SfbmpCls(self._core, self._cmd_group)
return self._sfbmp
@property
def trptSubset(self):
"""trptSubset commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_trptSubset'):
from .TrptSubset import TrptSubsetCls
self._trptSubset = TrptSubsetCls(self._core, self._cmd_group)
return self._trptSubset
def clone(self) -> 'RdataCls':
"""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 = RdataCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group