itextpropertyeditor.java
来自「SWT_designer安装软件」· Java 代码 · 共 21 行
JAVA
21 行
package com.swtdesigner.api.swt.property.editor;
/**
* Property editor that shows text as property value.
*
* @author scheglov_ke
*/
public interface ITextPropertyEditor extends IPropertyEditor {
/**
* Returns text presentation of property to show in property table.
* Designer will call setValue() before.
*/
String getText();
/**
* Changes property using new text.
*
* @param text the new text
*/
void setText(String text);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?