3


I have doxygen/graphiz running just fine for my java code (via the wizard), but the setting EXTRACT_PRIVATE = NO seems to only relate to the documentation, not the graphing. When using UML_LOOK = YES it includes private methods.

Is there a way to create dot collaboration/class diagrams via graphviz but no include private methods as the diagrams are massive?

If I set UML_LOOK = NO it only produces basic class diagrams with the class name and the look isn't what I want.

Rup
  • 33,765
  • 9
  • 83
  • 112
Neil Walker
  • 6,400
  • 14
  • 57
  • 86

1 Answers1

0

I'm afraid this is not possible using UML_LOOK (or if it is, I have yet to find out how).

You could generate your own dot diagrams or use a slightly more powerful/adapted tool, like PlantUML. It's a lot more work on your part, but you'll obviously get what you want.

SolarBear
  • 4,534
  • 4
  • 37
  • 53