1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

bug 297376: Missing Doxygen commands.

Patch from Marc-Andre Laperle
This commit is contained in:
Andrew Gvozdev 2009-12-26 23:18:53 +00:00
parent 790a689a5c
commit a618ada877
2 changed files with 24 additions and 2 deletions

View file

@ -15,6 +15,8 @@ category,,
class,,
code,,
cond,,
copybrief,,
copydetails,,
copydoc,,
date,,
def,,
@ -46,8 +48,11 @@ exception,,
f$,,
f[,,
f],,
f{,,
f},,
file,,
fn,,
headerfile,,
hideinitializer,,
htmlinclude,,
htmlonly,,
@ -66,6 +71,7 @@ line,,
link,,
mainpage,,
manonly,,
memberof,,
msc,,
n,,
name,,
@ -81,8 +87,14 @@ paragraph,,
param,,
post,,
pre,,
private,,
privatesection,,
property,,
protected,,
protectedsection,,
protocol,,
public,,
publicsection,,
ref,,
relates,,
relatesalso,,
@ -103,14 +115,24 @@ subsubsection,,
test,,
throw,,
todo,,
tparam,,
typedef,,
union,,
until,,
var,,
verbatim,,
verbinclude,,
version,,
version,Starts a paragraph where one or more version strings may be entered.,
warning,,
weakgroup,,
xmlonly,,
xrefitem,,
&,,
@,,
\,,
~,,
<,,
>,,
#,,
%,,
",,
Can't render this file because it contains an unexpected character in line 138 and column 4.

View file

@ -54,7 +54,7 @@ public class DoxygenHelper extends AbstractPreferenceInitializer {
for(String line= br.readLine(); line!=null; line= br.readLine()) {
content.append(line+"\n"); //$NON-NLS-1$
}
String[] values= content.toString().split("(\\s)*,(\\s)*"); //$NON-NLS-1$
String[] values= (content.toString()+"dummy-for-split").split("(\\s)*,(\\s)*"); //$NON-NLS-1$ //$NON-NLS-2$
for(int i=0; i+1<values.length; i+=2) {
temp.add(new GenericDocTag(values[i], values[i+1]));