from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class ObscurationCls:
"""Obscuration commands group definition. 6 total commands, 3 Subgroups, 0 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("obscuration", core, parent)
@property
def lmm(self):
"""lmm commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_lmm'):
from .Lmm import LmmCls
self._lmm = LmmCls(self._core, self._cmd_group)
return self._lmm
@property
def rpl(self):
"""rpl commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_rpl'):
from .Rpl import RplCls
self._rpl = RplCls(self._core, self._cmd_group)
return self._rpl
@property
def vobs(self):
"""vobs commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_vobs'):
from .Vobs import VobsCls
self._vobs = VobsCls(self._core, self._cmd_group)
return self._vobs
def clone(self) -> 'ObscurationCls':
"""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 = ObscurationCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group