From: Arno P. <ar...@pu...> - 2011-06-11 15:27:18
|
On Jun 11, 2011, at 3:37 AM, Panayotis Katsaloulis <pan...@pa...> wrote: > And now some questions: > > 1) Let's take for example the files java_util_ArrayList.m/h . This class gets overridden in my code by another class. Will the contents of java_util_ArrayList.m/h change, depending on the overriding class? Possibly yes. The method may not have been in the vtable but by overriding it, it needs to be added to the vtable of ArrayList. > 2) Is it possible (since most of it is generated code), to write code (probably with some casting) which will silence these 999+ warnings? The clean solution is to generate better code. In the meantime just select the option "inhibit all warnings". Arno > |