icustomizer.java

来自「SWT_designer安装软件」· Java 代码 · 共 21 行

JAVA
21
字号
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 + =
减小字号Ctrl + -
显示快捷键?