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

10 lines
190 B
Java

package org.apache.velocity.util.introspection;
public interface VelPropertyGet {
String getMethodName();
Object invoke(Object obj) throws Exception;
boolean isCacheable();
}