Source code documentation

+1 vote
asked Jun 19, 2020 in Question / help by Marie
Hello,

Is there any documentation of the source code? I did my research but couldn't find any.

I would like to add a feature within sequence diagrams for a project, and after a week a reverse-engineering, I still don't understand how a SequenceDiagram object become an image. If some of you have already worked on that, can you explain to me the general process?

Thanks

1 Answer

0 votes
answered Jun 20, 2020 by albert (3,520 points)
Not really full developer documentation, but probably a good starting point is to run doxygen (https://www.doxygen.nl/index.html) over the source code, like is done in a general way by Fossies.org (https://fossies.org/) see e.g. https://fossies.org/dox/plantuml-1.2020.13/index.html
commented Jun 23, 2020 by Marie
I've found a javadoc (https://javadoc.io/doc/net.sourceforge.plantuml/plantuml/latest/index.html), which is kinda the same as the output of doxygen. As the source code don't have any javadoc written, the javadoc I've found is only a listing of packages and classes with their methods without any explanation of how it works.
...