Reputation: 39030
Here's the deal - I want a way to figure out specifically which methods were touched or changed within the last milestone/iteration so that the methods' Javadoc is checked for correct content, especially for the public API methods.
Any ideas on how to do this, perhaps with an SVN hook?
Upvotes: 1
Views: 140
Reputation: 29715
there is no single command to achieve this, but you can combine some svn commands to achive something similar:
the class/methodname is trivial to get for usual java classes, however, if you use innerclasses, it will be more difficult, but then : do they have or need javadoc comments?
Upvotes: 1
Reputation: 399871
An idea, at least: svn diff has the ability to pass arguments to the diff command. One such option is -p
, also known as --show-c-function
. This would probably figure in a solution of this problem for C code. So, the question becomes: is there a diff implementation that knows enough of the Java syntax to support a similar option? I've Googled, but not found anything yet.
Upvotes: 1