| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| ThemingFactory |
|
| 0.0;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 | } |