org.eclipse.ui.keys.IBindingService#savePreferences ( )源码实例Demo

下面列出了org.eclipse.ui.keys.IBindingService#savePreferences ( ) 实例代码,或者点击链接到github查看源代码,也可以在右侧发表评论。

源代码1 项目: translationstudio8   文件: KeyController2.java
/**
 * Replaces all the current bindings with the bindings in the local copy of the binding manager.
 * @param bindingService
 *            The binding service that saves the changes made to the local copy of the binding manager
 */
public void saveBindings(IBindingService bindingService) {
	try {
		bindingService.savePreferences(fBindingManager.getActiveScheme(), fBindingManager.getBindings());
	} catch (IOException e) {
		logPreferenceStoreException(e);
	}
}
 
源代码2 项目: tmxeditor8   文件: KeyController2.java
/**
 * Replaces all the current bindings with the bindings in the local copy of the binding manager.
 * @param bindingService
 *            The binding service that saves the changes made to the local copy of the binding manager
 */
public void saveBindings(IBindingService bindingService) {
	try {
		bindingService.savePreferences(fBindingManager.getActiveScheme(), fBindingManager.getBindings());
	} catch (IOException e) {
		logPreferenceStoreException(e);
	}
}
 
源代码3 项目: tmxeditor8   文件: KeyController2.java
/**
 * Replaces all the current bindings with the bindings in the local copy of the binding manager.
 * @param bindingService
 *            The binding service that saves the changes made to the local copy of the binding manager
 */
public void saveBindings(IBindingService bindingService) {
	try {
		bindingService.savePreferences(fBindingManager.getActiveScheme(), fBindingManager.getBindings());
	} catch (IOException e) {
		logPreferenceStoreException(e);
	}
}