Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getMethodDescNoException (0.08 sec)

  1. src/main/java/org/codelibs/core/lang/AnnotationUtil.java

         * @return the value of the annotation element
         */
        protected static Object getProperty(final BeanDesc beanDesc, final Annotation annotation, final String name) {
            final MethodDesc methodDesc = beanDesc.getMethodDescNoException(name);
            if (methodDesc == null) {
                return null;
            }
            final Object value = methodDesc.invoke(annotation);
            if (value == null || "".equals(value)) {
                return null;
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/beans/BeanDesc.java

         * @param paramTypes
         *            The array of parameter types for the method
         * @return The {@link MethodDesc} that matches the given parameter types
         */
        MethodDesc getMethodDescNoException(String methodName, Class<?>... paramTypes);
    
        /**
         * Returns the {@link MethodDesc} that matches the given arguments.
         *
         * @param methodName
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 24 01:52:43 UTC 2025
    - 7.9K bytes
    - Viewed (0)
Back to top