Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getTypeVariables (0.06 sec)

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

                    break;
                }
            }
        }
    
        private void setUpParameterizedClassDesc() {
            final Map<TypeVariable<?>, Type> typeVariables = ((BeanDescImpl) beanDesc).getTypeVariables();
            if (field != null) {
                parameterizedClassDesc = ParameterizedClassDescFactory.createParameterizedClassDesc(field, typeVariables);
            } else if (readMethod != null) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 24 01:52:43 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

        }
    
        @SuppressWarnings("unchecked")
        @Override
        public <T> Class<T> getBeanClass() {
            return (Class<T>) beanClass;
        }
    
        @Override
        public Map<TypeVariable<?>, Type> getTypeVariables() {
            return typeVariables;
        }
    
        @Override
        public boolean hasPropertyDesc(final String propertyName) {
            assertArgumentNotEmpty("propertyName", propertyName);
    
    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