Hello all,
I would like to know if it is possible to show dependencies to self in a class diagram as an association instead of a member variable when the class diagram is generated by importing code.
For example:
I have a LinkedList pointing to the root of type ListItem. ListItem has to references to itself, _next and _previous.
The dependency from LinkedList to ListItem is presented as an association with label _root, but _next and _previous of ListItem is only showed as private member. For clarity I would like to present them as an association.
Is that possible?
Kind regards,
Frank Litjens