Hello there!

I'm happily documentaing my java code with Doxygen (which is awesome).
Recently I encounter a problem that I think it's a bug (but it might also
be my inexperience).

I have documented a java interface method, for example like this:

public interface InterfaceTest {

 /**documentation
  *
  */
 public void InterfaceMethod();
}

And I have a implementing class, where I want to add additional
documentation. My first guess was to use the command \copydoc, like this:

public class ClassTest implementing InterfaceTest {

 /** \copydoc InterfaceTest::InterfaceMethod()
  *
  * additional documentation
  */
 @Override
 public void InterfaceMethod(){
   //do stuff here...
 }
}

The problem is that the output shows only the additional documentation, as
if there was no copydoc command. Doxygen dosn't show any warning in the
output console.
So, am I doing something wrong?

Thanks for all the answers!
------------------------------------------------------------------------------
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration & more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=164703151&iu=/4140/ostg.clktrk
_______________________________________________
Doxygen-users mailing list
Doxygen-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/doxygen-users

Reply via email to