📄 studentlocalhome.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -