| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| ObjectCreator |
|
| 0.0;0 |
| 1 | package org.webslinger.resolver; | |
| 2 | ||
| 3 | public interface ObjectCreator<T> { | |
| 4 | char[] getChars(T object) throws Exception; | |
| 5 | T newObject(Class<? extends T> wantedType, char[] chars, int offset, int length) throws Exception; | |
| 6 | } |