14 lines
260 B
Java
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();
|
|
}
|