Created attachment 16485 [details] Testcase taken from the Telepathy spec. (LGPL) CreateInterface doesn't check for Java keywords in variable names when it generates interfaces. Because of this, it will generate Java code that use reserved keywords like "new" as variable names if that is what the input calls them. The generated code will then have errors, since "new" is a reserved keyword. Fast hack to workaround the problem: cat Generated.java | sed -e "s/new/theNew/g" > Generated.java
I've added name mangling for reserved words to CreateInterface. It'll be in the next release. Thanks, Matt
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.