editorview.java

来自「是一个专门设计用于触摸屏的POS(point of sales)应用软件」· Java 代码 · 共 22 行

JAVA
22
字号
/*
 * EditorView.java
 *
 * Created on 3 de agosto de 2006, 22:50
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package net.adrianromero.data.user;

import javax.swing.JComponent;
import net.adrianromero.basic.BasicException;

public interface EditorView {
    
    public void init(EditorRecordBasic editor);
    public void writeValue(Object value);
    public Object readValue() throws BasicException ;
    public JComponent getComponent();
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?