Files
oop/assignment4/Question5/Learnable.java
2022-04-21 15:43:38 +08:00

14 lines
260 B
Java

/*
* Author: CHEN Yongyuan (Walter) 1930006025 from OOP(1007)
* Date: 2022-04-18
* Description: This is the Learnable interface.
*/
public interface Learnable {
public String getCode();
public String getTitle();
public Learnable getPreRequisite();
}