Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getBeanClass (0.24 sec)

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

            return FieldUtil.get(field, target);
        }
    
        @Override
        public <T> T getStaticFieldValue() {
            if (!isStatic()) {
                throw new FieldNotStaticRuntimeException(beanDesc.getBeanClass(), fieldName);
            }
            return FieldUtil.get(field);
        }
    
        @Override
        public void setFieldValue(final Object target, final Object value) {
            assertArgumentNotNull("target", target);
    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/PropertyDescImpl.java

                return;
            }
            try {
                method.setAccessible(true);
            } catch (RuntimeException e) {
                throw new BeanMethodSetAccessibleFailureException(beanDesc.getBeanClass(), method, e);
            }
        }
    
        private boolean isExceptPrivateAccessible(Method method) {
            // to avoid warning of JDK-internal access at Java11
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 24 01:52:43 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/beans/BeanDesc.java

    public interface BeanDesc {
    
        /**
         * Returns the class of the Bean.
         *
         * @param <T>
         *            The class of the Bean
         * @return The class of the Bean
         */
        <T> Class<T> getBeanClass();
    
        /**
         * Returns a map from type variables to type arguments.
         *
         * @return A map from type variables to type arguments
         */
        Map<TypeVariable<?>, Type> getTypeVariables();
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 24 01:52:43 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/beans/impl/MethodDescImpl.java

        }
    
        @Override
        public <T> T invokeStatic(final Object... args) {
            if (!isStatic()) {
                throw new MethodNotStaticRuntimeException(getBeanDesc().getBeanClass(), methodName);
            }
            return MethodUtil.invokeStatic(method, args);
        }
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

            setupConstructorDescs();
            setupPropertyDescs();
            setupMethodDescs();
            setupFieldDescs();
        }
    
        @SuppressWarnings("unchecked")
        @Override
        public <T> Class<T> getBeanClass() {
            return (Class<T>) beanClass;
        }
    
        @Override
        public Map<TypeVariable<?>, Type> getTypeVariables() {
            return typeVariables;
        }
    
        @Override
    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