noticefacadelocal.java
来自「介绍了j2ee开发常用的学习知识,如servlet,javamail,EJB等知」· Java 代码 · 共 32 行
JAVA
32 行
/*
* NoticeFacadeLocal.java
*
* Created on 2007年11月21日, 下午4:06
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package com.ejb;
import java.util.List;
import javax.ejb.Local;
/**
*
* @author hyl
*/
@Local
public interface NoticeFacadeLocal {
void create(Notice notice);
void edit(Notice notice);
void destroy(Notice notice);
Notice find(Object pk);
List findAll();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?