Coverage Report - org.webslinger.ThemingFactory
 
Classes in this File Line Coverage Branch Coverage Complexity
ThemingFactory
N/A
N/A
0
 
 1  
 package org.webslinger;
 2  
 
 3  
 import java.io.IOException;
 4  
 
 5  
 public interface ThemingFactory<T> {
 6  
     T getThemedObject(String themePath) throws IOException;
 7  
 }