Re: generated code in Apache Commons Collections

2013-10-17 Thread Emmanuel Bourg
Hi Jonathan, You may want to have a look at Commons Configuration where parsers are generated with JavaCC. The generated sources files aren't committed in Subversion though, they are generated on the fly when building the project. You'll see them if you look into the sources jar: http://central.m

Re: generated code in Apache Commons Collections

2013-10-17 Thread Thomas Neidhart
Hi Jonathan, yes, you did not miss anything, there is no generated code in commons-collections. All classes in source folder src/main/java would belong to your "productive code" category, while classes in folder "src/test/java" would belong to "test code". If you need an example of generated code

generated code in Apache Commons Collections

2013-10-17 Thread Jonathan Bernwieser
Hi there, I am currently doing my Bachelor thesis at TU Munich, at the Software Engineering chair of Prof. Broy. The goal of this thesis is to create a tool to automatically categorize source code in open source software. Different categories will be "test code", "generated code" and "productiv