Conditional Compilation (or something like this!)
Hi all.
In my application I would need to conditionally import a jar, depending on a configuration switch.
I'm attaching here some sample code (written in "c++ conditional compilation mode") to explain better the situation:
#ifdef (VERSION_5)
path.to.mypackage.MyClass mc =new path.to.mypackage.MyClass();
mc.doSomething();
#endif
What I need is not to be forced to include the package "path.to.mypackage" at compile-time if the version is not VERSION_5.
Any help will be very appreciated!!

