1 package example.cmp.many2many; 2 3 import java.util.*; 4 5 18 abstract public class StudentBean extends com.caucho.ejb.AbstractEntityBean { 19 20 24 abstract public String getName(); 25 26 30 abstract public Collection getCourseList(); 31 32 35 public void addCourse(Course course) 36 { 37 this.getCourseList().add( course ); 38 } 39 40 43 public void removeCourse(Course course) 44 { 45 this.getCourseList().remove( course ); 46 } 47 } 48 | Popular Tags |