from ........Internal.Core import Core
from ........Internal.CommandsGroup import CommandsGroup
from ........Internal.RepeatedCapability import RepeatedCapability
from ........ import repcap
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class SblockCls:
"""Sblock commands group definition. 7 total commands, 7 Subgroups, 0 group commands
Repeated Capability: SubBlock, default value after init: SubBlock.Nr1"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("sblock", core, parent)
self._cmd_group.rep_cap = RepeatedCapability(self._cmd_group.group_name, 'repcap_subBlock_get', 'repcap_subBlock_set', repcap.SubBlock.Nr1)
def repcap_subBlock_set(self, subBlock: repcap.SubBlock) -> None:
"""Repeated Capability default value numeric suffix.
This value is used, if you do not explicitely set it in the child set/get methods, or if you leave it to SubBlock.Default
Default value after init: SubBlock.Nr1"""
self._cmd_group.set_repcap_enum_value(subBlock)
def repcap_subBlock_get(self) -> repcap.SubBlock:
"""Returns the current default repeated capability for the child set/get methods"""
# noinspection PyTypeChecker
return self._cmd_group.get_repcap_enum_value()
@property
def bandwidth(self):
"""bandwidth commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_bandwidth'):
from .Bandwidth import BandwidthCls
self._bandwidth = BandwidthCls(self._core, self._cmd_group)
return self._bandwidth
@property
def center(self):
"""center commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_center'):
from .Center import CenterCls
self._center = CenterCls(self._core, self._cmd_group)
return self._center
@property
def frequency(self):
"""frequency commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_frequency'):
from .Frequency import FrequencyCls
self._frequency = FrequencyCls(self._core, self._cmd_group)
return self._frequency
@property
def name(self):
"""name commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_name'):
from .Name import NameCls
self._name = NameCls(self._core, self._cmd_group)
return self._name
@property
def rfbWidth(self):
"""rfbWidth commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_rfbWidth'):
from .RfbWidth import RfbWidthCls
self._rfbWidth = RfbWidthCls(self._core, self._cmd_group)
return self._rfbWidth
@property
def technology(self):
"""technology commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_technology'):
from .Technology import TechnologyCls
self._technology = TechnologyCls(self._core, self._cmd_group)
return self._technology
@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
def clone(self) -> 'SblockCls':
"""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 = SblockCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group