?? accountfacaderemote.java
字號:
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package com.sysu.dao;import com.sysu.pojo.Account;import java.util.List;import javax.ejb.Remote;/** * * @author Levi Wong */@Remotepublic interface AccountFacadeRemote { void create(Account account); void edit(Account account); void remove(Account account); Account find(Object id); List<Account> findAll();}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -