2026-03-17 13:31:18 -07:00

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();
}