[Doxygen-users] "full description" instead of "brief description" in Method summary

2013-01-07 Thread Josef Frühwirth
Hi, with version 1.8.3 inheritance of javadoc from interfaces to implementation classes works again. But if {@inheritDoc} tags are used like here: /** * {@inheritDoc} */ public int myInterfaceMethod(short myParam){ return myParam * 2; } And JAVADOC_AUTOBRIEF is used, t

[Doxygen-users] javadoc: if {@inheritDoc} tag is used, brief description contains full doc

2013-01-04 Thread Josef Frühwirth
Hi, with version 1.8.3 inheritance of javadoc of interfaces to implementation classes works again. But if {@inheritDoc} tags are used like here: /** * {@inheritDoc} */ public int myInterfaceMethod(short myParam){ return myParam * 2; } And JAVADOC_AUTOBRIEF is used, the

[Doxygen-users] 1.8.2 inherit java interface documentation

2012-09-28 Thread Josef Frühwirth
Hi doxygen users, Is there a new approach for doxygen 1.8.2 to configure doxygen to inherit a method's documentation from java interfaces to method implementations inside classes? An update from 1.8.1.2 to 1.8.2 breaks this kind of inheritance for my project. Regards Josef ---