Re: Decouple Javadoc from Java
Eric Sosman wrote:
Javadoc isn't so much about the code, as about how to
use what the code implements.
Which I still call "documenting the code". It doesn't document the
implementation details of the code, but it does document the code in a
manner relevant to users of the code.
Lew wrote:
Javadocs also follow referential chains, e.g., @Override annotations,
@see Javadoc tags, adding fully-qualified name prefixes through the
imports. This would be harder, though not impossible, from a separate=
d
Eric Sosman wrote:
Aside: Does Javadoc really check @Override?
You are right, that was an imprecise statement. It checks what the
method overrides, but not by using the annotation, rather by following
the inheritance tree. This still supports my point, which is that the
comment has to be associated with the code in order to do that.
... It
by which I'm guessing you mean "keeping Javadoc comments *with* the
code"
also increases the effort required to provide the documentation
in alternative forms, like Farsi, say. It also increases the
difficulty of improving the documentation: If an editor rewrites
your Javadoc to straighten out the sentence structure, will you
check out the source, apply his edits, check it back in, bump
the version number, and re-run the Q/A cycle? Or will you say
"Too close to deadline; can't touch the source except for show-
stopper bugs at this point; we'll put in on the list for 2.0?"
If improving the Javadoc did not involve the risk of inadvertent
damage to the source files containing it, this hurdle would be
noticeably lower than it is.
The hurdle is pretty low already. I routinely check out code to fix
up the Javadocs.
Maybe because where I work we have certain relevant standards - the
Javadocs must be complete (for a suitable definition of "complete"),
the source must not show warnings, and our warning settings must
include flags for incomplete Javadocs.
Separating the code to a different document would raise the hurdle to
keeping the Javadocs in synch with the code. If one were to update
the code (for a "show-stopper" bug [1]), the temptation to delay
updating the relevant Javadoc comments would be higher if they were in
a separate artifact.
It's enough that Javadoc uses semantic information from the non-
comment source to do its thing to convince me that the current way is
desirable.
Remember (and, Lew,
this is most particularly directed to you) that Javadoc written
by programmers is Javadoc written by the same people who post here
on Usenet and can't punctuate ends of sentences... hehe...
And I correct those errors during code reviews.
Programmers should not be ignorant of correct use of natural
language. That's a pitiful stereotype and an even more pitiful
excuse. Lack of rigor in use of natural language bespeaks lack of
rigor in use of computer languages. We are professionals and proper
and effective communication is an essential professional skill.
I expect technical professionals (programmers, analysts or architects)
to write the Javadocs because *they are the ones defining the code
contract*. I expect them to write the Javadocs using correct natural
language and punctuation. Don't you? Shouldn't we all?
Rather than arguing to have the Javadocs be in a separate file, argue
to have them written first, in the source file, and to have the
programmer flesh out the implementations with the doc comments right
there in their face where they cannot ignore them.
--
Lew