📄 ipropertyeditorsite.java
字号:
package com.swtdesigner.api.property.editor;
import org.eclipse.swt.widgets.Shell;
/**
* Site for property editor.
* It provides acccess to property editor environment.
*
* @author scheglov_ke
*/
public interface IPropertyEditorSite {
/**
* Returns Shell of Eclipse window. It should be used as parent for opening dialogs to
* make them children of main window.
*/
Shell getShell();
/**
* Allows property editor change value of property.
*
* @param value the new value of property
*/
void setValue(Object value);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -