studentlocalhome.java
来自「100多M的J2EE培训内容」· Java 代码 · 共 13 行
JAVA
13 行
package day21ex.student;
import javax.ejb.*;
import java.util.Collection;
public interface StudentLocalHome extends EJBLocalHome {
StudentLocal create(String studentID, String name, String password,
String address, String emailAddress) throws CreateException;
public StudentLocal findByPrimaryKey(String key) throws FinderException;
public Collection findByLastName(String lastName) throws FinderException;
public Collection findByAddress(String address) throws FinderException;
public Collection findAllStudents() throws FinderException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?