src/main/java/org/apache/bsf/util/ReflectionUtils.java [335:343]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      throws IllegalArgumentException, IllegalAccessException {
    // This is to handle how we do static fields.
    final Class targetClass = (target instanceof Class)
                        ? (Class) target
                        : target.getClass ();

    try {
      final Field f = targetClass.getField (fieldName);
      final Class fieldType = f.getType ();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/bsf/util/ReflectionUtils.java [417:425]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      throws IllegalArgumentException, IllegalAccessException {
    // This is to handle how we do static fields.
    final Class targetClass = (target instanceof Class)
                        ? (Class) target
                        : target.getClass ();

    try {
      final Field f = targetClass.getField (fieldName);
      final Class fieldType = f.getType ();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



