com.swingfrog.summer.proxy.ProxyMethodInterceptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of summer Show documentation
Show all versions of summer Show documentation
a lightweight game server framework
package com.swingfrog.summer.proxy;
import java.lang.reflect.Method;
public interface ProxyMethodInterceptor {
Object intercept(Object obj, Method method, Object[] args) throws Throwable;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy