In our system we fetch ORM managed entity beans from the database (using hibernate) and then we copy them onto DTO beans to send down to the UI.
Most of the properties on the DTO have the same name as on the entity, but the return types are often different since any related entities referenced have to be converted to store only the ID or another DTO.
In my ideal dream world somehow when I edited the javadocs for the entity, the javadocs on same-named methods in the DTO would be updated to match. This could be done via build tool or eclipse plugin.
Has anyone seen anything like this out there?