生成UML组件图

时间:2013-05-15 17:50:57

标签: uml diagram component-diagram

我正在尝试使用配置文件(XML,Lua,等等......)找到一个创建UML组件图的库。

我的目标是达到以下目的: enter image description here 来自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];    
  }
}

0 个答案:

没有答案