wip
This commit is contained in:
committed by
Yadunand Prem
parent
4e99493aa5
commit
f5a9db22d1
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user