11 lines
262 B
Java
11 lines
262 B
Java
package net.tomatentum.marinara.checks;
|
|
|
|
import java.lang.annotation.Annotation;
|
|
|
|
public interface InteractionCheck<A extends Annotation> {
|
|
|
|
public boolean preExec(Object context, A annotation);
|
|
public void postExec(Object context, A annotation);
|
|
|
|
}
|