Skip to content
Snippets Groups Projects
Commit b5112132 authored by Tomáš Orviský's avatar Tomáš Orviský
Browse files

ClassAttriute, AttributeModifier docstring

parent a0852ab7
No related merge requests found
......@@ -5,6 +5,7 @@ from enum import Enum
class AttributeModifier(Enum):
"""Represents a visibility modifier for ClassAttribute."""
NONE = ""
PRIVATE = "-"
PACKAGE_PRIVATE = "~"
......@@ -18,6 +19,7 @@ class AttributeModifier(Enum):
class ClassAttribute:
"""Represent an attribute/method for ClassDiagram."""
def __init__(
self,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment