(Class clas, String fieldName)
| 201 | |
| 202 | |
| 203 | public static Object getStaticFieldValue(Class clas, String fieldName) throws UtilEvalError, ReflectError { |
| 204 | return getFieldValue(clas, null, fieldName, true/*onlystatic*/); |
| 205 | } |
| 206 | |
| 207 | |
| 208 | /** |
no test coverage detected