how do I modify org.eclipse.ui.workbench plugin
I want my application shaped changed by modifying org.eclipse.ui.workbench plugin. but the problem is even though I开发者_JAVA技巧 import it with source , it is not operated.
How do I solve this out?
It looks like importing a plugin from source leaves the *.properties files behind. They are required, however; and must be copied manually in order for the plugin to be functional.
Don't do that :-)
Two reasons:
(1) as soon as you switch to a newer version of Eclipse, your code won't work. You have to merge all the changes that had gone into workbench plugin
(2) By modifying the code and not submitting the changes back, you are violating EPL. (I'm not a lawyer, so check with a real lawyer for more details)
精彩评论