This commit is contained in:
Yadunand Prem
2022-09-15 21:07:40 +08:00
committed by Yadunand Prem
parent 4e99493aa5
commit f5a9db22d1
9 changed files with 188 additions and 146 deletions

View File

@@ -1,15 +1,15 @@
/**
* The Action interface that can be called
* on an object of type T to act.
*
* Contains a single abstract method call.
*
* CS2030S Lab 4
* AY22/23 Semester 1
*
* @author Yadunand Prem (10B)
*/
interface Action<T> {
void call(T item)
}
/**
* The Action interface that can be called
* on an object of type T to act.
*
* Contains a single abstract method call.
*
* CS2030S Lab 4
* AY22/23 Semester 1
*
* @author Yadunand Prem (10B)
*/
interface Action<T> {
void call(T item);
}