| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| PlainObjectWrapper |
|
| 0.0;0 |
| 1 | package org.webslinger.lang; | |
| 2 | ||
| 3 | public class PlainObjectWrapper<T> implements ObjectWrapper<T> { | |
| 4 | public final T value; | |
| 5 | ||
| 6 | 0 | public PlainObjectWrapper(T value) { |
| 7 | 0 | this.value = value; |
| 8 | 0 | } |
| 9 | ||
| 10 | public T getObject() { | |
| 11 | 0 | return value; |
| 12 | } | |
| 13 | } |