Chirag wrote: > I require AOT Compilation that will protect my source code as well as > improve the execution time of my Swing Application.
As an aside, AOT does not guarantee improved performance, it really depends upon the application. Modern JITs use profile directed feedback to guide performance improvements based on runtime information - so in some cases JIT compiling the code may well improve the execution time. Regards, Tim
