Source code for RsSmcv.Implementations.Source.Bb.Dvbs2.Tsl.IsPy

from .......Internal.Core import Core
from .......Internal.CommandsGroup import CommandsGroup
from .......Internal.RepeatedCapability import RepeatedCapability
from ....... import repcap


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class IsPyCls: """IsPy commands group definition. 6 total commands, 6 Subgroups, 0 group commands Repeated Capability: InputStream, default value after init: InputStream.Nr1""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("isPy", core, parent) self._cmd_group.rep_cap = RepeatedCapability(self._cmd_group.group_name, 'repcap_inputStream_get', 'repcap_inputStream_set', repcap.InputStream.Nr1) def repcap_inputStream_set(self, inputStream: repcap.InputStream) -> 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 InputStream.Default Default value after init: InputStream.Nr1""" self._cmd_group.set_repcap_enum_value(inputStream) def repcap_inputStream_get(self) -> repcap.InputStream: """Returns the current default repeated capability for the child set/get methods""" # noinspection PyTypeChecker return self._cmd_group.get_repcap_enum_value() @property def fecFrame(self): """fecFrame commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_fecFrame'): from .FecFrame import FecFrameCls self._fecFrame = FecFrameCls(self._core, self._cmd_group) return self._fecFrame @property def isi(self): """isi commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_isi'): from .Isi import IsiCls self._isi = IsiCls(self._core, self._cmd_group) return self._isi @property def modCod(self): """modCod commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_modCod'): from .ModCod import ModCodCls self._modCod = ModCodCls(self._core, self._cmd_group) return self._modCod @property def nsym(self): """nsym commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_nsym'): from .Nsym import NsymCls self._nsym = NsymCls(self._core, self._cmd_group) return self._nsym @property def pilots(self): """pilots commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_pilots'): from .Pilots import PilotsCls self._pilots = PilotsCls(self._core, self._cmd_group) return self._pilots @property def tsn(self): """tsn commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_tsn'): from .Tsn import TsnCls self._tsn = TsnCls(self._core, self._cmd_group) return self._tsn def clone(self) -> 'IsPyCls': """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 = IsPyCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group