标签:his def default style weight data window course nta
public Courses(int id, String name, Set<Student> students) {
super();
this.id = id;
this.name = name;
this.students = students;
}
public Courses(int id, String name, Set<Student> students) {
super();
this.id = id;
this.name = name;
this.students = students;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Set<Student> getStudents() {
return students;
}
标签:his def default style weight data window course nta
原文地址:http://www.cnblogs.com/AnTank/p/7656041.html