8 lines
115 B
Java
8 lines
115 B
Java
package net.tomatentum.cutin;
|
|
|
|
public interface MethodExecutor<C extends Object> {
|
|
|
|
void handle(C context);
|
|
|
|
}
|