(Object instance)
| 134 | } |
| 135 | |
| 136 | public boolean getBoolean(Object instance) throws IllegalAccessException { |
| 137 | return ((Boolean) get(instance)).booleanValue(); |
| 138 | } |
| 139 | |
| 140 | public byte getByte(Object instance) throws IllegalAccessException { |
| 141 | return ((Byte) get(instance)).byteValue(); |
nothing calls this directly
no test coverage detected