Using noweb on a large Java project

Has anyone used noweb a competent programming tool for a large Java project, where several source code files should be generated in different subdirectories? How did you deal with this now? Are there any resources and / or best practices out there?

+5
source share
2 answers

Noweb will upload files relative to the current working directory or the specified absolute path. Just do not use * at the end of your file name (so as not to insert # preprocessor directives). I would recommend using% def with @ to show where you define and use names.

<</path/to/file.java>>=
  reallyImportantVariable += 1;
@ %def reallyImportantVariable

noweb ( ) , , javac .

, , , javadoc, , , , noweb.

+5

, , . , Java .

, Java , - - . , , Javadoc, .

Java ( , IDE).

?

+4

All Articles