setools/setoolsgui/widgets/models/__init__.py
Chris PeBenito 2d755c46ca Clean up item model classes.
* Remove "Model" from names of model classes.
* Remove remaining *_detail() functions.
* Add typing.
* Make models dir a package.
* Update for superclass data() method as fallback.
* Switch to match/case statements.

Signed-off-by: Chris PeBenito <pebenito@ieee.org>
2024-02-14 09:11:28 -05:00

25 lines
800 B
Python

# SPDX-License-Identifier: LGPL-2.1-only
from .boolean import BooleanList
from .bounds import BoundsTable
from .common import CommonTable
from .constraint import ConstraintTable
from .default import DefaultTable
from .fsuse import FSUseTable
from .genfscon import GenfsconTable
from .ibendportcon import IbendportconTable
from .ibpkeycon import IbpkeyconTable
from .initsid import InitialSIDTable
from .mls import MLSComponentTable
from .mlsrule import MLSRuleTable
from .netifcon import NetifconTable
from .nodecon import NodeconTable
from .objclass import ObjClassTable
from .portcon import PortconTable
from .rbacrule import RBACRuleTable
from .role import RoleTable
from .terule import TERuleTable
from .type import TypeTable
from .typeattr import TypeAttributeTable
from .user import UserTable