UML associations in PyCharm
Hello,
I just read the "Working with diagrams" PyCharm tutorial. Did I get it right that there is no way to display or add "standard associations" between classes? For example if I have a "Company" class and an "Employee" class, I would like to draw a line between these two classes with the corresponding multiplicity ("1 company has n employees").
Regards
Please sign in to leave a comment.
PyCharm cannot define if there is a one-to-many relation or anything of that kind, but it can show you the subclasses like shown in the examples https://www.jetbrains.com/help/pycharm/viewing-diagram.html
Ok, thanks.