coreen icon indicating copy to clipboard operation
coreen copied to clipboard

Handle uses in docs

Open samskivert opened this issue 13 years ago • 0 comments

Javadoc supports referencing other types from within the documentation. We want those references to be live in the rendered documentation. Probably that means something like turning:

Calls {@link Foo#fizBang} with the {@link Frobble}.

into:

<def ...>
  <doc>Calls fizBang with the Frobble.
    <use name="fizBang" id="...Foo.fizBang" start="6"/>
    <use name="Frobble" id="...Frobble" start="24"/>
  </doc>
</def>

samskivert avatar Oct 05 '10 23:10 samskivert