fastpropertyeditor.java
来自「webwork source」· Java 代码 · 共 24 行
JAVA
24 行
/*
* WebWork, Web Application Framework
*
* Distributable under Apache license.
* See terms of license at opensource.org
*/
package webwork.util.editor;
/**
* This interface is used instead of the PropertyEditor interface
* It is stateless so the editors can be cached
*
* @see java.beans.PropertyEditor
* @author Dick Zetterberg (dick@transitor.se)
* @version $Revision: 1.1 $
*/
public interface FastPropertyEditor
{
public String getAsText(Object value);
public Object getAsValue(String txt);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?