本文介绍了我的Eclipse插件可以从其他插件更改首选项吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在开发一个Eclipse插件,需要更改其他插件定义的某些首选项,例如文本编辑器中的选项卡大小。这是可能的吗?
I'm working on an Eclipse plugin that needs to change some preferences defined by other plugins, e.g. the tab size in text editors. Is that possible?
推荐答案
是的,这是可能的。
您需要在自己的偏好设置页面中:
You'll need this in your preference page:
setPreferenceStore( new ScopedPreferenceStore( new InstanceScope(), "bundle-name-of-other-plugin" ) );
或者你可以做这样的事情。
Or you could do something like this here.
FYI,偏好设置在这里:
FYI, the preferences live here:
pathToWorkspace\.metadata\.plugins\org.eclipse.core.runtime\.settings
这篇关于我的Eclipse插件可以从其他插件更改首选项吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!