Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FieldDescImpl (0.16 sec)

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

    import org.codelibs.core.exception.FieldNotStaticRuntimeException;
    import org.codelibs.core.lang.FieldUtil;
    
    /**
     * Implementation class of {@link FieldDesc}.
     *
     * @author koichik
     */
    public class FieldDescImpl implements FieldDesc {
    
        /** The {@link BeanDesc} of the class that owns this field */
        protected final BeanDesc beanDesc;
    
        /** The field */
        protected final Field field;
    
        /** The field name */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

                final String fname = field.getName();
                if (fieldDescCache.containsKey(fname)) {
                    continue;
                }
                setFieldAccessible(field);
                final FieldDescImpl fieldDesc = new FieldDescImpl(this, field);
                fieldDescCache.put(fname, fieldDesc);
                if (!FieldUtil.isInstanceField(field)) {
                    continue;
                }
                if (hasPropertyDesc(fname)) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 25.8K bytes
    - Viewed (1)
Back to top