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.

------------------------------------------------------------------------------
Slashdot TV.  
Video for Nerds.  Stuff that matters.
http://tv.slashdot.org/
_______________________________________________
Doxygen-users mailing list
Doxygen-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/doxygen-users

Reply via email to