added handling for tag ref in Java

This commit is contained in:
Marko Klopcic 2013-03-16 10:53:48 +01:00
commit 4e2c1e3ac3
5 changed files with 71 additions and 9 deletions

View file

@ -269,12 +269,16 @@ int func07(int a)
*
* \protectedsection
*
* \anchor someAnchor
* Text after anchor.
* \protocol someProtocol header.h "Header name"
*
* \public
*
* \publicsection
*
* \ref someAnchor Anchor description
*
* \ref someAnchor
*
* \related toSomething

View file

@ -111,11 +111,15 @@ public class doxygen_translate_all_tags_runme {
" @param a the first param\n");
wantedComments.put("doxygen_translate_all_tags.doxygen_translate_all_tags.func08(int)",
" Remarks: Some remark text \n" +
" Remarks: Another remarks section \n" +
" @return Whatever \n" +
" @return it \n" +
" @return may return \n");
"<a id=\"#someAnchor\"></a>\n" +
"Text after anchor.\n" +
"<i>Anchor description</i>\n" +
"<i>someAnchor</i>\n" +
" Remarks: Some remark text \n" +
" Remarks: Another remarks section \n" +
" @return Whatever \n" +
" @return it \n" +
" @return may return \n");
wantedComments.put("doxygen_translate_all_tags.doxygen_translate_all_tags.func09(int)",
" This will only appear in RTF \n" +