?? converter.java
字號:
package pl.converter;
/**
* This interface represents converter. Object type is the type of a
* PersistentObject's attribute.
*
* @author Artem Rudoy
*/
public interface Converter
{
/**
* Init converter.
*/
public void init(java.util.Properties properties) throws pl.PlException;
/**
* Convert to object attribute type.
*/
public Object convertTo(Object object) throws pl.PlException;
/**
* Convert from object attribute type.
*/
public Object convertFrom(Object object) throws pl.PlException;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -