Hi all,
I am refactoring a project which uses javaCC to create a proprietary language parser during compile time. Due to the fact that different variations of languages can exist at the same time, it has been decided to dynamically generate the java source code from the jj files during runtime, to then compile the java files into class files and load them.
In order to do so more efficiently I would like to generate the java files in memory to some stream I suppose. JavaCC's API Javadoc is not too accessible :).
Can anyone advise me on how best to progress?