5

I'm trying to find a library that creates UML Component Diagram using a config file (XML, Lua, whatever... )

My objective is reach something like this: enter image description here UML Component Diagram from Visual Studio

I already found PlantUML, but i can't represent Composite Components on it. Does someone have another project ?

EDIT:

I'm trying to find something like Graphviz, and I could the code below. You can try the code using 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];    
  }
}
RAM
  • 2,257
  • 2
  • 19
  • 41
Makah
  • 4,435
  • 3
  • 47
  • 68
  • I'm curious. How do you intend to generate the "XML, Lua, whatever..." so that the desired tool could create the diagram? Do you have any other tool which generates any kind of XMI? – gustavogbc Jun 11 '13 at 19:12
  • @gustavogbc: I tried to give a bit more explanation – Makah Jun 16 '13 at 14:39

0 Answers0