This repository acts as a personal archive for my solutions to EdX course *Data Structures and Software Design* from PennX.
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.

18 lines
389 B

  1. import java.util.List;
  2. /*
  3. * SD2x Homework #10
  4. * This is the empty implementation of the StudentsDataSource.
  5. * Do not change the signature of the method.
  6. * You do not need to implement or submit this code.
  7. */
  8. public interface StudentsDataSource {
  9. /*
  10. * Returns a List of students who are taking the specified class.
  11. */
  12. public List<Student> getStudents(String className) ;
  13. }