studentmanager.java
来自「飞机订票系统」· Java 代码 · 共 41 行
JAVA
41 行
package org.appfuse.service;
import java.util.List;
import org.appfuse.service.impl.BaseManager;
import org.appfuse.dao.StudentDAO;
import org.appfuse.model.Student;
import org.appfuse.util.exception.*;
public interface StudentManager {
/**
* Set the DAO for communication with the data layer.
*
* @param dao
*/
public void setStudentDAO(StudentDAO dao);
/**
* @see org.appfuse.service.UserManager#getUser(java.lang.String)
*/
public Student getStudent(int moduleid) throws AppSystemException,
AppBusinessException;
/**
* @see org.appfuse.service.UserManager#getUsers(org.appfuse.model.User)
*/
public List getStudents(Student module) throws AppSystemException,
AppBusinessException;
/**
* @see org.appfuse.service.UserManager#saveUser(org.appfuse.model.User)
*/
public void saveStudent(Student module) throws AppSystemException,
AppBusinessException;
/**
* @see org.appfuse.service.UserManager#removeUser(java.lang.String)
*/
public void removeStudent(int moduleid) throws AppSystemException,
AppBusinessException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?