Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for getPropertyType (0.34 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/core/beans/PropertyDesc.java

         */
        String getPropertyName();
    
        /**
         * Returns the property type.
         *
         * @param <T>
         *            the property type
         * @return the property type
         */
        <T> Class<T> getPropertyType();
    
        /**
         * Returns the getter method.
         *
         * @return the getter method
         */
        Method getReadMethod();
    
        /**
         * Returns whether the property has a getter method.
         *
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Sat May 10 01:32:17 GMT 2025
    - 4.3K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java

            }
        }
    
        @Override
        public final String getPropertyName() {
            return propertyName;
        }
    
        @Override
        @SuppressWarnings("unchecked")
        public final <T> Class<T> getPropertyType() {
            return (Class<T>) propertyType;
        }
    
        @Override
        public final Method getReadMethod() {
            return readMethod;
        }
    
        /**
         * Sets the getter method.
         *
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Thu Jul 24 01:52:43 GMT 2025
    - 15.1K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

            if (propDesc == null) {
                propDesc = new PropertyDescImpl(propertyName, propertyType, readMethod, null, null, this);
                addPropertyDesc(propDesc);
            } else if (propDesc.getPropertyType() != propertyType) {
                invalidPropertyNames.add(propertyName);
            } else {
                propDesc.setReadMethod(readMethod);
            }
        }
    
        /**
         * Prepares the setter method.
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Thu Jun 19 09:12:22 GMT 2025
    - 25.8K bytes
    - Click Count (1)
Back to Top