Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for targetClass (0.07 sec)

  1. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

         *
         * @param targetClass
         *            the target class
         */
        private void setupFieldDescsByClass(final Class<?> targetClass) {
            addFieldDescs(targetClass);
            for (final Class<?> intf : targetClass.getInterfaces()) {
                setupFieldDescsByInterface(intf);
            }
            final Class<?> superClass = targetClass.getSuperclass();
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 25.8K bytes
    - Viewed (1)
  2. src/main/java/org/codelibs/core/lang/FieldUtil.java

                                valueClass == null ? null : valueClass.getName(), valueClass == null ? null : valueClass.getClassLoader(),
                                value, targetClass == null ? null : targetClass.getName(),
                                targetClass == null ? null : targetClass.getClassLoader()),
                        e);
            }
        }
    
        /**
         * Checks if the given field is an instance field.
         *
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java

                                        valueClass == null ? null : valueClass.getClassLoader(), convertedValue,
                                        targetClass == null ? null : targetClass.getName(),
                                        targetClass == null ? null : targetClass.getClassLoader() }).initCause(t);
                    }
                } else {
                    FieldUtil.set(field, target, convertedValue);
                }
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 24 01:52:43 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/beans/util/CopyOptions.java

                final Class<?> targetClass;
                if (value.getClass() != String.class) {
                    targetClass = value.getClass();
                } else {
                    targetClass = destPropertyClass;
                }
                if (targetClass == null) {
                    return value;
                }
                for (final Class<?> clazz : iterable(targetClass, false)) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 17.5K bytes
    - Viewed (0)
Back to top