from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]
class FgsCls:
"""Fgs commands group definition. 5 total commands, 5 Subgroups, 0 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("fgs", core, parent)
@property
def default(self):
"""default commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_default'):
from .Default import DefaultCls
self._default = DefaultCls(self._core, self._cmd_group)
return self._default
@property
def taCode(self):
"""taCode commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_taCode'):
from .TaCode import TaCodeCls
self._taCode = TaCodeCls(self._core, self._cmd_group)
return self._taCode
@property
def timer(self):
"""timer commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_timer'):
from .Timer import TimerCls
self._timer = TimerCls(self._core, self._cmd_group)
return self._timer
@property
def info(self):
"""info commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_info'):
from .Info import InfoCls
self._info = InfoCls(self._core, self._cmd_group)
return self._info
@property
def ue(self):
"""ue commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_ue'):
from .Ue import UeCls
self._ue = UeCls(self._core, self._cmd_group)
return self._ue
def clone(self) -> 'FgsCls':
"""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 = FgsCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group