rosterhome.java
来自「100多M的J2EE培训内容」· Java 代码 · 共 12 行
JAVA
12 行
package cmpsample;import javax.ejb.*;import java.util.*;public interface RosterHome extends javax.ejb.EJBLocalHome { public Roster create(String rosterID) throws CreateException; public Roster create(String rosterID, String scheduleID, String studentID) throws CreateException; public Collection findByStudentID(String studentID) throws FinderException; public Collection findByScheduleID(String scheduleID) throws FinderException; public Roster findByPrimaryKey(String rosterID) throws FinderException;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?