How to change Eclipse Preferences programmatically(如何以编程方式更改 Eclipse 首选项)
问题描述
应该采用什么方法来更改 Eclipse 首选项?
What approach should be to change Eclipse Preferences?
它们存储在 <workspace>/.metadata/.plugin/org.eclipse.core.runtime/.settings
但我希望找到 Java API 和发现任何偏好 ID 的方法.
But I hope to find Java API and a way to discover any preference ID.
推荐答案
有点令人困惑的是,插件可以使用几个 API 来进行偏好设置.
Somewhat confusingly there are several APIs a plugin can use for preferences.
如果你的插件激活器扩展了 AbstractUIPlugin
那么你可以调用
If your plugin activator extends AbstractUIPlugin
then you can call
IPreferenceStore prefStore = getPreferenceStore();
在激活器中获取插件的偏好存储.
in the activator to get the preference store for your plugin.
你也可以使用
IEclipsePreferences prefs = InstanceScope.INSTANCE.getNode("node id");
获得与首选项略有不同的界面.
to get a slightly different interface to the preferences.
还有 org.eclipse.equinox.preferences.preferences
扩展点,可让您定义初始化程序"来设置首选项的默认值.
There is also the org.eclipse.equinox.preferences.preferences
extension point which lets you define an 'initializer' to set the default values for preferences.
这篇关于如何以编程方式更改 Eclipse 首选项的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何以编程方式更改 Eclipse 首选项
基础教程推荐
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 降序排序:Java Map 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01