1 package example.cmp.many2many; 2 3 import java.rmi.*; 4 import java.util.*; 5 import javax.ejb.*; 6 7 import java.util.*; 8 9 12 public interface Course extends EJBLocalObject { 13 14 19 String getName(); 20 21 25 String getInstructor(); 26 27 31 Collection getStudentList(); 32 33 38 void addStudent(Student student); 39 40 45 void removeStudent(Student student); 46 47 } 48 | Popular Tags |