Unlink objects in class diagram

0 votes
asked Aug 30, 2022 in Question / help by Cel
We're liberally using the `!include` feature in our class diagrams, but sometimes the orientations of the existing connections aren't great for the diagram. I was wondering if it was possible to either redirect existing included connections, or to remove them without altering the original included diagram.

1 Answer

0 votes
answered Aug 30, 2022 by plantuml (295,000 points)
Not sure to fully understand your request.

Could you post here a very short example that describes the issue. Thanks!
commented Aug 31, 2022 by Cel

File1.iuml

@startuml

class object1

class object2

object1 -u- object2
@enduml

File2.iuml

@startuml

!include File1.iuml

object1 -l- object2

@enduml

In this example, File2.iuml produces a graph with two connections between the classes. I'd like to be able to destroy the existing connection or otherwise change its directionality without modifying File1.iuml.

 

...