📄 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 + -