Coverage Report - com.lexicalscope.fluentreflection.dynamicproxy.ProxyImplementation
 
Classes in this File Line Coverage Branch Coverage Complexity
ProxyImplementation
N/A
N/A
1
 
 1  
 package com.lexicalscope.fluentreflection.dynamicproxy;
 2  
 
 3  
 import java.lang.reflect.InvocationHandler;
 4  
 
 5  
 public interface ProxyImplementation<T> extends InvocationHandler {
 6  
     Class<?> proxiedInterface();
 7  
 }