com.nerdvision.agent.reflect.api.IReflection Maven / Gradle / Ivy
/**
* Copyright (C) 2019 Intergral Information Solutions GmbH. All Rights Reserved
*/
package com.nerdvision.agent.reflect.api;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
/**
* @author nwightma
*/
public interface IReflection
{
boolean setAccessible( final Class> clazz, final Field field );
boolean setAccessible( final Class> clazz, final Method method );
}