10 lines
203 B
Java
10 lines
203 B
Java
package org.apache.velocity.app.event;
|
|
|
|
public interface EventHandlerMethodExecutor {
|
|
void execute(EventHandler eventHandler) throws Exception;
|
|
|
|
Object getReturnValue();
|
|
|
|
boolean isDone();
|
|
}
|