Javadoc and sqlj source files

Hi,I am trying to generate documentation with the javadoc tool but I am unable to do it with my .sqlj source files. With normal .java source files I have no problems. Is this a limitation of javadoc or is there a way to do this?thanks in advance,Luis
[278 byte] By [lmsilvaa] at [2007-10-3 5:24:32]
# 1

The javadoc tool is limited to java source files. It's pretty much a precondition of the javadoc tool that a source file must be able to be compiled by the javac compiler. Javadoc uses parts of javac to parse the source file and build a doc structure, using javac internal data structures. If your sqlj file cannot be compiled by javac, they are unlikely to be parsed by the javadoc tool.

dhkramera at 2007-7-14 23:31:40 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...