📄 icustomizer.java
字号:
package com.swtdesigner.api.swt.customizer;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
/**
* A customizer class provides a complete custom GUI for customizing
* a target SWT control.
*
* @author scheglov_ke
*/
public interface ICustomizer {
/**
* Create the control that should be used for customizing target control.
*
* @param parent the widget which will be the parent of the new instance (cannot be null)
* @param control the object to be customized
*/
Control createControl(Composite parent, Object control);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -