[Doxygen-users] Java examples not linking back to Classes without long name calls
Brought to you by:
dimitri
From: Robert W. <rw...@er...> - 2015-01-27 19:36:31
|
All, I hope someone can help. I am working with Doxygen 1.8.9.1. Using it to document C, C++ and Java SDK and examples. I am able to have all of my examples show up in the Examples menu item. The C and C++ ones work well as calls in the examples get properly linked back to functions in the class (after enabling BUILTIN_STL_SUPPORT). However, my Java examples do not get linked back unless they are called with long names. Example: import com.joey.admin.Administration; public class Java_ACLAdmin_ACLTemplate_Add { private String m_strServerName; private int m_nPort; private String m_strUsername; private String m_strPasswd; private AgentConnection m_conn; public void test_addACLTemplate() throws AgentException, AdminException { Administration admin = new Administration(); .. Does not link However... import com.joey.admin.Administration; public class Java_ACLAdmin_ACLTemplate_Add { private String m_strServerName; private int m_nPort; private String m_strUsername; private String m_strPasswd; private AgentConnection m_conn; public void test_addACLTemplate() throws AgentException, AdminException { Administration admin = new com.joey.admin.Administration.Administration(); .. Links correctly to the Administration() function. Is there some sort of setting that needs to be changed to correctly process Java examples? RW |