from ........Internal.Core import Core
from ........Internal.CommandsGroup import CommandsGroup
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class DumResCls:
"""DumRes commands group definition. 15 total commands, 12 Subgroups, 0 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("dumRes", core, parent)
@property
def apMap(self):
"""apMap commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_apMap'):
from .ApMap import ApMapCls
self._apMap = ApMapCls(self._core, self._cmd_group)
return self._apMap
@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 dlist(self):
"""dlist commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_dlist'):
from .Dlist import DlistCls
self._dlist = DlistCls(self._core, self._cmd_group)
return self._dlist
@property
def modulation(self):
"""modulation commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_modulation'):
from .Modulation import ModulationCls
self._modulation = ModulationCls(self._core, self._cmd_group)
return self._modulation
@property
def naps(self):
"""naps commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_naps'):
from .Naps import NapsCls
self._naps = NapsCls(self._core, self._cmd_group)
return self._naps
@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 power(self):
"""power commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_power'):
from .Power import PowerCls
self._power = PowerCls(self._core, self._cmd_group)
return self._power
@property
def prec(self):
"""prec commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_prec'):
from .Prec import PrecCls
self._prec = PrecCls(self._core, self._cmd_group)
return self._prec
@property
def scSpacing(self):
"""scSpacing commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_scSpacing'):
from .ScSpacing import ScSpacingCls
self._scSpacing = ScSpacingCls(self._core, self._cmd_group)
return self._scSpacing
@property
def sltFmt(self):
"""sltFmt commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_sltFmt'):
from .SltFmt import SltFmtCls
self._sltFmt = SltFmtCls(self._core, self._cmd_group)
return self._sltFmt
@property
def state(self):
"""state commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_state'):
from .State import StateCls
self._state = StateCls(self._core, self._cmd_group)
return self._state
@property
def tpState(self):
"""tpState commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_tpState'):
from .TpState import TpStateCls
self._tpState = TpStateCls(self._core, self._cmd_group)
return self._tpState
def clone(self) -> 'DumResCls':
"""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 = DumResCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group