我正在尝试使用配置文件(XML,Lua,等等......)找到一个创建UML组件图的库。
我的目标是达到以下目的: 来自Visual Studio
的 UML组件图我已经找到PlantUML,但我不能代表复合组件。 有人有另一个项目吗?
修改
我正在尝试找到类似Graphviz的内容,我可以使用下面的代码。您可以使用online Graphviz
尝试代码graph ER {
SuperComponent [shape=component]
node SuperComponent {
comp1 [shape=component]
facet1 [shape=circle, height=0.12,width=0.12, label=""]
facet2 [shape=circle, height=0.12,width=0.12, label=""]
comp1 -- facet1 [label="My Facet1" fontsize=6];
comp1 -- facet2 [label="My Facet2" fontsize=6];
}
}