Is there a way to generate JavaDoc from Domino Designer?

I export my Domino Designer Java code to Eclipse to generate JavaDoc, but this is cumbersome.

I tried several times to do the same from inside DDE, but the process fails and cannot find a solution.

Is there a way to generate JavaDoc for managed beans from DDE?

+4
source share
1 answer

JavaDoc is available as an ANT task. Domino Designer can run ANT tasks manually or as part of the build process. Only catch: ANT does not know the Eclipse virtual file system. You have 2 options to overcome this: Use a version control connection - this copies all files to a directory - or use the import / export module from OpenNTF. It has an ANT interface.

Let us know how this happens.

+3
source

Source: https://habr.com/ru/post/1394802/


All Articles