12 lines
230 B
Java
12 lines
230 B
Java
package org.apache.velocity.util.introspection;
|
|
|
|
public interface VelMethod {
|
|
String getMethodName();
|
|
|
|
Class getReturnType();
|
|
|
|
Object invoke(Object obj, Object[] objArr) throws Exception;
|
|
|
|
boolean isCacheable();
|
|
}
|