📄 icomboupdater.java
字号:
package com.swtplus.widgets.combo;
/**
* IComboUpdater is a callback mechanism from the IComboStrategy to the
* PCombo.
*/
public interface IComboUpdater {
/**
* Updates the value in the PCombo.
*
* @param newValue new value object
* @param close true to close the drop down
*/
public void update(Object newValue,boolean close);
/**
* Closes the drop down.
*/
public void closeDropDown();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -