![JAR search and dependency download from the Maven repository](/logo.png)
io.gsonfire.util.reflection.AbstractMethodInspector Maven / Gradle / Ivy
package io.gsonfire.util.reflection;
import java.lang.reflect.Method;
/**
* Created by julio on 12/12/15.
*/
public abstract class AbstractMethodInspector extends AnnotationInspector {
@Override
protected Method[] getDeclaredMembers(Class clazz) {
return clazz.getDeclaredMethods();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy