通过 java 代码将 Eclipse "Refresh using native hooks or polling" 设置为 true?
Set Eclipse "Refresh using native hooks or polling" to true through java code?
有没有办法通过java代码将"Preferences -> General -> Workspace -> Refresh using native hooks or polling"设置为true?
我正在开发一个 eclipse 插件,它会大量更改资源,因此项目总是不同步。
找到答案:
IEclipsePreferences prefs = InstanceScope.INSTANCE.getNode("org.eclipse.core.resources");
prefs.putBoolean(ResourcesPlugin.PREF_AUTO_REFRESH, true);
prefs.flush();
谢谢大家
有没有办法通过java代码将"Preferences -> General -> Workspace -> Refresh using native hooks or polling"设置为true? 我正在开发一个 eclipse 插件,它会大量更改资源,因此项目总是不同步。
找到答案:
IEclipsePreferences prefs = InstanceScope.INSTANCE.getNode("org.eclipse.core.resources");
prefs.putBoolean(ResourcesPlugin.PREF_AUTO_REFRESH, true);
prefs.flush();
谢谢大家