All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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