Bug 482821 - Vert.x codegen drops {@link ...} from javadoc
Summary: Vert.x codegen drops {@link ...} from javadoc
Status: NEW
Alias: None
Product: Vertx
Classification: RT
Component: Platform (show other bugs)
Version: unspecified   Edit
Hardware: Macintosh Mac OS X
: P3 normal
Target Milestone: Unknown   Edit
Assignee: Vert-x Platform Bugzilla Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-11-23 05:22 EST by Görge Albrecht CLA
Modified: 2015-11-23 05:22 EST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Görge Albrecht CLA 2015-11-23 05:22:44 EST
If the source class contains a {@link ...} in its javadoc, it's lost in the RXified class.

e.g.

io.vertx.ext.web.handler.SessionHandler:

{code}
/**
 * ...
 * The session is available on the routing context with {@link RoutingContext#session()}.
 * ...
 */
@VertxGen
{code}

io.vertx.rxjava.ext.web.handler.SessionHandler:

{code}
/**
 * ...
 * The session is available on the routing context with .
 * ...
 */