from .........Internal.Core import Core
from .........Internal.CommandsGroup import CommandsGroup
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class XpucchCls:
"""Xpucch commands group definition. 9 total commands, 9 Subgroups, 0 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("xpucch", core, parent)
@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 conflict(self):
"""conflict commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_conflict'):
from .Conflict import ConflictCls
self._conflict = ConflictCls(self._core, self._cmd_group)
return self._conflict
@property
def napUsed(self):
"""napUsed commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_napUsed'):
from .NapUsed import NapUsedCls
self._napUsed = NapUsedCls(self._core, self._cmd_group)
return self._napUsed
@property
def nxPucch(self):
"""nxPucch commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_nxPucch'):
from .NxPucch import NxPucchCls
self._nxPucch = NxPucchCls(self._core, self._cmd_group)
return self._nxPucch
@property
def physBits(self):
"""physBits commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_physBits'):
from .PhysBits import PhysBitsCls
self._physBits = PhysBitsCls(self._core, self._cmd_group)
return self._physBits
@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 rbCount(self):
"""rbCount commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_rbCount'):
from .RbCount import RbCountCls
self._rbCount = RbCountCls(self._core, self._cmd_group)
return self._rbCount
@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 formatPy(self):
"""formatPy commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_formatPy'):
from .FormatPy import FormatPyCls
self._formatPy = FormatPyCls(self._core, self._cmd_group)
return self._formatPy
def clone(self) -> 'XpucchCls':
"""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 = XpucchCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group