⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 studentlocalhome.java

📁 学生注册— 本模块允许新的学生创建和维护他们的帐户信息
💻 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 + -