Coverage Report - com.lexicalscope.fluentreflection.ReflectedMethods
 
Classes in this File Line Coverage Branch Coverage Complexity
ReflectedMethods
N/A
N/A
1
 
 1  
 package com.lexicalscope.fluentreflection;
 2  
 
 3  
 import java.util.List;
 4  
 
 5  
 interface ReflectedMethods<T> {
 6  
     List<FluentMethod> methods();
 7  
     List<FluentMethod> declaredMethods();
 8  
 }