[Doxygen-users] Doxygen dot. Draw link between classes by annotation
Brought to you by:
dimitri
From: Dmitry R. <di...@gm...> - 2014-09-04 07:16:16
|
Hi, Doxygen can generate class diagrams with graphiz. For example: |class A{...}; class Bextends A{...};| From this code I can generate a picture where doxygen can show that one class it the parent of an other. But is there a way to generate a picture from code with manual references between classes? For example when I describe DB scheme and use contract classes (http://developer.android.com/training/basics/data-storage/databases.html#DefineContract) I want to perform smth like this: |class MainClass { class A{ String COLUMN_ID= "id_a"; } /** * {@dotlinkto MainClass.A} **/ @OrAnotationToDrawLink(A.class) class B{ String COLUMN_ID= "id_b"; String COLUMN_FOREIGN_KEY_TO_A= "id_a_key"; } }| And generate a picture of 2 classes A and B with reference between them. I've tried to search through documentation but can't find any suitable examples or explanation about custom drawing in javadoc+doxygen+graphviz. http://stackoverflow.com/questions/25610378/doxygen-dot-draw-link-between-classes-by-annotation -- Best regards, Dmitry. |