I have just started using JAutoDoc and its such an amazing tool for code documentation. But, I am stuck with a problem for the past two days - rearranging the @{props} in method template.
Example:
before template change:
/ Gets the suspense file nme.
@return the suspense file nme /
public String getSuspenseFileNme() {
return suspenseFileNme;
}
after template change:
/ Gets the suspense file nme. @return the suspense file nme @author user1234 @version
* @since
/
public String getSuspenseFileNme() {
return suspenseFileNme;
}
problem:
I want to rearrange the order such that @return comes last after @since. As in ,
@author
@version
@since
@return
Kindly help me out here.
Thanks in advance.
Cheers,
Madhu.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Sorry, but this is currently not possible. Additional tags will always be appended to end of comment. I'll think about a solution for the next release.
Regards,
Martin
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi all,
I have just started using JAutoDoc and its such an amazing tool for code documentation. But, I am stuck with a problem for the past two days - rearranging the @{props} in method template.
Example:
before template change:
/
Gets the suspense file nme.
@return the suspense file nme
/
public String getSuspenseFileNme() {
return suspenseFileNme;
}
after template change:
/
Gets the suspense file nme.
@return the suspense file nme
@author user1234
@version
* @since
/
public String getSuspenseFileNme() {
return suspenseFileNme;
}
problem:
I want to rearrange the order such that @return comes last after @since. As in ,
@author
@version
@since
@return
Kindly help me out here.
Thanks in advance.
Cheers,
Madhu.
Hi Madhu,
Sorry, but this is currently not possible. Additional tags will always be appended to end of comment. I'll think about a solution for the next release.
Regards,
Martin
Release 1.11.0 introduces an new preferences dialog for the resulting Javadoc tag order: http://jautodoc.sourceforge.net/index.html#tagorder