For testing purposes I need to be sure that certain methods are not inlined when the respective code is compiled to produce the .class files.
How do I do it in Eclipse?
EDIT
For those who really need to know why, before they tell how, here is the explanation – I am testing a code, which examines and manipulates JVM byte code. This is why I want sometimes to avoid method inlining.
Java methods are never inlined when producing the .class files (only by an optimizing JVM at run time), so you have nothing to worry about.