Sreedhar,
The lombok installer doesn’t recognize MyEclipse because it is installed into a different file structure from the standard eclipse install.
Alternatively you can set it up manually to work with MyEclipse. Copy the lombok.jar to the MyEclipse installation folder. Edit the myeclipse.ini and add -javaagent:lombok.jar
-Xbootclasspath/a:lombok.jar to the end of the file.
The contents of the myeclipse.ini should be as below :
#utf8 (do not remove)
-startup
../../Common/plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar
–launcher.library
../../Common/plugins/org.eclipse.equinox.launcher.i18n.win32.win32.x86_4.2.0.v201201111650
-install
C:\Program Files\Genuitec\Profiles\MyEclipse 10.5
-vm
C:\Program Files\Genuitec\Common\binary\com.sun.java.jdk.win32.x86_1.6.0.013\jre\bin\client\jvm.dll
-configuration
C:\Program Files\Genuitec\Profiles\MyEclipse 10.5\configuration
-vmargs
-Xmx512m
-XX:MaxPermSize=256m
-XX:ReservedCodeCacheSize=64m
-Dosgi.nls.warnings=ignore
-javaagent:lombok.jar
-Xbootclasspath/a:lombok.jar
Now start the IDE and add the lombok.jar to the project’s buildpath.
Let us know how it works for you.