Skip to main content

All Questions

Tagged with
1 vote
1 answer
132 views

plantuml command over multiple lines

When using plantuml in c style code comments /// then clang adds a \ line break into the comment. /// @startuml /// m_alengthyline.xxxxxxxxxxxxxx .[#green].> \ /// another....
Mat's user avatar
  • 33
0 votes
0 answers
125 views

I want to embed a uml activity Diagram

I am trying to create an activity diagram of my code by embedding the UML syntax in code and using Doxygen with plant UML. this is my code int add_numbers(int a, int b) { /** @startuml*/ /** ...
salem's user avatar
  • 11
0 votes
0 answers
131 views

Plantuml generates interface from Doxygen group

I would like to generate an interface diagram using Plantuml in Doxygen. Instead of typing the interfaces one by one as below, is it possible to generate the interface from the Doxygen group? I have ...
Sam's user avatar
  • 1,317
0 votes
1 answer
270 views

PlantUml Graphviz generates 2 duplicate diagrams

I have this markdown code that is going to be generated into an html file using plantuml and graphviz. @image html Module23Static.png TC3 @startuml{Module23Static.png} caption Module Dependencies ...
funky's user avatar
  • 1
6 votes
1 answer
3k views

Using UML in doxygen markdown page

I am using doxygen for my personal project and desire to use any type of UML language on page created by myself (markdown page). I do not mean to use it in code (it does work), but on a document ...
Black's user avatar
  • 322
2 votes
1 answer
614 views

Possible to generate links inside doxygen startuml/enduml section?

I have PlantUML configured to run from doxygen, and it is able to generate a simple diagram with a single class: \startuml class MyClass \enduml If I modify this to add a link to a url, clicking on ...
Fred Fettinger's user avatar
2 votes
1 answer
3k views

Doxygen PLANTUML_JAR_PATH and source code management

So, we are using doxygen (version 1.8.9.1) and plantuml for uml diagrams. The file Doxyfile contains PLANTUML_JAR_PATH = /home/malff/plantuml/plantuml.jar Note how the path is specific to a user. ...
Marc Alff's user avatar
  • 8,327
4 votes
3 answers
5k views

How can I resolve doxygen error: problems running PlantUML?

I've been using doxygen for a while successfully. I also use DOT from graphviz. Now I am trying to integrate PlantUML. I installed java and downloaded plantuml.jar. I added a simple example to one ...
Kane Anderson's user avatar
2 votes
1 answer
3k views

\startuml command in doxygen with PLANTUML_JAR_PATH

I am using plantuml to generate to UML figures and have a problem about the comments style. Steps to reproduce my problem: I create a file called mainpage.dox and write these contents: /** \...
Bangyou's user avatar
  • 9,736
2 votes
2 answers
6k views

How to include .iuml path to generate PlantUML diagram in Doxygen

I'm working on the documentation of a component using Doxygen and I want to include UMLdiagrams in between the text. I know how to do most of it, as I simply need to copy the .tuml source into my ....
Nick Fanelli's user avatar