up vote 4 down vote favorite
5
share [g+] share [fb]

I am looking for a code documentation tool like PasDoc that supports the Delphi 2007 syntax, in particular nested types.

I checked PasDoc and DelphiDoc but they do not support it.

I don't like the syntax of the builtin XMLDoc but would prefer something more JavaDoc like (that is: Shorter tag syntax, not quite as verbose as

<summary>
...
<param>
...

etc.)

link|improve this question

feedback

6 Answers

Doc-O-Matic supports the Delphi 2009 Generics and also JavaDoc like syntax.

link|improve this answer
feedback

Have you looked at the --doc switch for the Delphi compiler? AFAIK, the Delphi compiler understands the Delphi syntax pretty well ;-).

link|improve this answer
Is edn.embarcadero.com/article/32770 still the relevant page about XMLDoc for Delphi? Are there any other free or commercial tools which can be used? – mjn Mar 23 '09 at 19:29
1  
But does it understand JavaDoc style comments? AFAIK it only undertands XMLDoc which for my taste is too verbose. – dummzeuch Mar 23 '09 at 19:37
feedback

Did you check out DelphiCodeToDoc? I am not sure about the exact support of Nested types but I was pretty happy with the results last time I used it.

link|improve this answer
Thanks for the tip, but apparently Delphi Code2Doc doesn't support nexted types either (crashes when I try it). – dummzeuch Mar 23 '09 at 16:02
feedback

Pascal Browser from www.peganza.com creates very comprehensive documentation and can be customized to some extent.

link|improve this answer
feedback

Currently I am still using a combination of doxygen and pas2dox which works quite well. pas2dox converts the source into a C/C++ like document which can be parsed by doxygen. So maybe this (quite old) tool works as expected. If I have the time to test it with Delphi 2009 I'll post the results here. And the good thing about doxygen is that Javadoc style is supported.

link|improve this answer
update: with Delphi 2009 I still use doxygen & pas2dox, there are minor problems but I can live with them. Would be interested to know if there is a 2009 (and higher) tool now which has similar output quality – mjn Nov 14 '10 at 10:48
feedback

if you have issue with DelphiCodeToDoc with nested type, please, send me example or give me clue so I will try to fix it !

link|improve this answer
Have you solve this point with DelphiCodeToDoc or another tool ? – TridenT Mar 28 '10 at 7:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.