?? enrollmentdao.java
字號:
package com.ibm.ta.dao;
import com.ibm.ta.webservice.Student;
import com.ibm.ta.webservice.Course;
public interface EnrollmentDAO {
public void insertEnrollment(long studentID, long courseID)
throws DAOException;
public Student[] getEnrolledStudents(long courseID) throws DAOException;
public Course[] getCourseEnrollments(long studentID) throws DAOException;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -