Java Documentation Override Method does not InheritDoc - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T06:45:11Z http://stackoverflow.com/feeds/question/1081408 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1081408/java-documentation-override-method-does-not-inheritdoc 3 Java Documentation Override Method does not InheritDoc vigilant 2009-07-04T03:13:28Z 2009-07-04T04:18:58Z <p>A method that overrides another method does not inherit documentation of the method it is overriding. Is there any way to explicitly tell it to inherit the documentation?</p> <pre><code>/** * {@inheritDoc} * * This implementation uses a dynamic programming approach. */ @Override public int[] a(int b) { return null; } </code></pre> http://stackoverflow.com/questions/1081408/java-documentation-override-method-does-not-inheritdoc/1081440#1081440 4 Answer by Brandon E Taylor for Java Documentation Override Method does not InheritDoc Brandon E Taylor 2009-07-04T03:44:07Z 2009-07-04T03:50:08Z <p>According to the <a href="http://java.sun.com/javase/6/docs/technotes/tools/solaris/javadoc.html" rel="nofollow">javadoc documentation</a>:</p> <blockquote> <p>Inheriting of comments occurs in all three possible cases of inheritance from classes and interfaces: </p> <ul> <li>When a method in a class overrides a method in a superclass </li> <li>When a method in an interface overrides a method in a superinterface</li> <li>When a method in a class implements a method in an interface</li> </ul> </blockquote> <p>Comments can be explicitly inherited using the <a href="http://java.sun.com/javase/6/docs/technotes/tools/solaris/javadoc.html#@inheritDoc" rel="nofollow">{@inheritDoc}</a> tag. If no comments are provided for an overriding method, comments will be implicitly inherited. Aspects of the inheriting comments (e.g. params, return value, etc.) can be overridden if you so desire.</p> <p>Importantly, you need to make sure that the source file containing the code with the comment to be inherited is available to the javadoc tool. You can do this by using the -<a href="http://java.sun.com/javase/6/docs/technotes/tools/solaris/javadoc.html#sourcepath" rel="nofollow">sourcepath</a> option.</p> http://stackoverflow.com/questions/1081408/java-documentation-override-method-does-not-inheritdoc/1081450#1081450 0 Answer by corlettk for Java Documentation Override Method does not InheritDoc corlettk 2009-07-04T03:53:17Z 2009-07-04T04:18:58Z <p>From <a href="http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/javadoc.html#inheritingcomments" rel="nofollow">the 1.4.2 Javadoc manual</a></p> <blockquote> <p><strong>Algorithm for Inheriting Method Comments</strong> - If a method does not have a doc comment, or has an {@inheritDoc} tag, the Javadoc tool searches for an applicable comment using the following algorithm, which is designed to find the most specific applicable doc comment, giving preference to interfaces over superclasses:</p> <ol> <li>Look in each directly implemented (or extended) interface in the order they appear following the word implements (or extends) in the method declaration. Use the first doc comment found for this method.</li> <li>If step 1 failed to find a doc comment, recursively apply this entire algorithm to each directly implemented (or extended) interface, in the same order they were examined in step 1.</li> <li>If step 2 failed to find a doc comment and this is a class other than Object (not an interface): 1. If the superclass has a doc comment for this method, use it. 2. If step 3a failed to find a doc comment, recursively apply this entire algorithm to the superclass.</li> </ol> </blockquote> <p>I believe (though I could be wrong) that this basic algorithm still applies to Java 1.5 and 1.6... though it really would be awfully nice of Sun to publish a complete self-contained definitive document for each version of the toolset... I guess it's an overhead they just can't afford, atleast for a free toolset.</p> <p>Cheers. Keith.</p> <p><hr /></p> <p><strong>Edit:</strong></p> <p>Here's a quick and dirty example.</p> <p><strong>Code</strong></p> <pre><code>package forums; interface Methodical { /** * A no-op. Returns null. * @param i int has no effect. * @return int[] null. */ public int[] function(int i); } interface Methodological extends Methodical { /** * Another no-op. Does nothing. */ public void procedure(); } class Parent implements Methodological { @Override public int[] function(int i) { return null; } @Override public void procedure() { // do nothing } } class Child extends Parent { /** {@inheritDoc} */ @Override public int[] function(int i) { return new int[0]; } /** {@inheritDoc} */ @Override public void procedure() { System.out.println("I'm a No-op!"); } } public class JavaDocTest { public static void main(String[] args) { try { new Child().procedure(); } catch (Exception e) { e.printStackTrace(); } } } </code></pre> <p><strong>Javadoc</strong></p> <pre><code>C:\Java\home\src\forums&gt;javadoc -package -sourcepath . JavaDocTest.java Loading source file JavaDocTest.java... Constructing Javadoc information... Standard Doclet version 1.6.0_12 Building tree for all the packages and classes... Generating forums/\Child.html... Generating forums/\JavaDocTest.html... Generating forums/\Methodical.html... Generating forums/\Methodological.html... Generating forums/\Parent.html... Generating forums/\package-frame.html... Generating forums/\package-summary.html... Generating forums/\package-tree.html... Generating constant-values.html... Building index for all the packages and classes... Generating overview-tree.html... Generating index-all.html... Generating deprecated-list.html... Building index for all classes... Generating allclasses-frame.html... Generating allclasses-noframe.html... Generating index.html... Generating help-doc.html... Generating stylesheet.css... </code></pre> <p><strong>Produces</strong> file:///C:/Java/home/src/forums/index.html</p> <pre><code>function public int[] function(int i) A no-op. Returns null. Specified by: function in interface Methodical Overrides: function in class Parent Parameters: i - int has no effect. Returns: int[] null. procedure public void procedure() Another no-op. Does nothing. Specified by: procedure in interface Methodological Overrides: procedure in class Parent </code></pre>