接口 ClassTableService
-
- 所有已知实现类:
ClassTableServiceImpl
public interface ClassTableService- 版本:
- 1.0
- 作者:
- xuanc
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 java.util.List<Course>getCourses()获取当前课程信息java.util.List<Course>getCourses(int year, int num)获取指定学年、学期课程信息
-
-
-
方法详细资料
-
getCourses
java.util.List<Course> getCourses() throws NotLoggedInException
获取当前课程信息- 返回:
- 课程信息
- 抛出:
NotLoggedInException
-
getCourses
java.util.List<Course> getCourses(int year, int num) throws NotLoggedInException
获取指定学年、学期课程信息- 参数:
year- 学年num- 学期- 返回:
- 课程信息
- 抛出:
NotLoggedInException
-
-