You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
xsx/StudentController.java

49 lines
878 B

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package mvc»ù´¡1;
/**
* @author The Administrator
* @version 1.0
* @created 26-10ÔÂ-2025 22:49:47
*/
class StudentController {
/**
* æŒ<C3A6>有ModelåŒView的引用(关è<C2B3>”关系ï¼?
*/
private Student model;
private StudentView view;
public Student m_Student;
public StudentView m_StudentView;
public StudentController(){
}
public void finalize() throws Throwable {
}
/**
* æž„é€ æ¹æ³•:åˆ<C3A5>å§åŒæŽ§åˆ¶å™¨ï¼Œå…³è<C2B3>”模åžåŒè§†å¾
*
* @param model
* @param view
*/
public StudentController(Student model, StudentView view){
}
/**
* 展示所有学生(调用DAO查询,通过视å¾å±•示ï¼?
*/
public void listStudents(){
}
/**
* æ´æ°å­¦ç”Ÿä¿¡æ<C2A1>¯ï¼ˆä»Žè§†å¾èŽ·å<C2B7>è¾“å…¥ï¼Œæ´æ°æ¨¡åžï¼Œå†<C3A5>通过视å¾å±•示ï¼?
*/
public void updateStudent(){
}
}//end StudentController