Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
KWH40
fml40-reference-implementation
Commits
45f10f9e
Commit
45f10f9e
authored
Dec 02, 2020
by
GromeTT
Browse files
ENH: Added documentation for role.py
parent
09cd2354
Changes
1
Hide whitespace changes
Inline
Side-by-side
ml/role.py
View file @
45f10f9e
from
ml.identifier
import
ID
from
abc
import
ABC
"""This module implements the role class."""
import
sys
from
abc
import
ABC
from
ml.identifier
import
ID
class
Role
(
ABC
):
"""Each Role class manages a role which can be assigned to things."""
def
__init__
(
self
,
name
=
""
,
identifier
=
""
):
"""Constructs a new Role class object with the given name and
identifier.
:param name: Name of the feature
:param identifier: Identifier of the feature
"""
self
.
__identifier
=
ID
(
identifier
).
identifier
self
.
__name
=
name
# TODO: Remove code duplication (feature.py).
if
'ml
\\
fml40'
in
sys
.
modules
[
self
.
__class__
.
__module__
].
__file__
:
self
.
__class_name
=
"fml40::{}"
.
format
(
self
.
__class__
.
__name__
)
else
:
...
...
@@ -14,22 +27,53 @@ def __init__(self, name="", identifier=""):
@
property
def
class_name
(
self
):
"""Sets __class_name to value.
:param value: New class name
"""
return
self
.
__class_name
@
property
def
name
(
self
):
"""Returns the object's name.
:returns: Name of the object
:rtype: str
"""
return
self
.
__name
@
name
.
setter
def
name
(
self
,
value
):
"""Sets __name to value.
:param value: New name
"""
self
.
__name
=
value
@
property
def
identifier
(
self
):
"""Returns the object's indentifier.
:returns: Identifier
:rtype: str
"""
return
self
.
__identifier
@
identifier
.
setter
def
identifier
(
self
,
value
):
"""Builds an ID object from value and assigns the resulting identifier
to __identifier.
:param value: Proposal of the identifier
"""
self
.
__identifier
=
ID
(
value
).
identifier
def
to_json
(
self
):
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment