Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getMethodNames (0.09 sec)

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

     * }
     *
     * for (ConstructorDesc constructorDesc : beanDesc.getConstructorDescs()) {
     *     constructorDesc.newInstance(...); // Create an instance of Foo
     * }
     *
     * for (String methodName : beanDesc.getMethodNames()) {
     *     for (MethodDesc methodDesc : beanDesc.getMethodDescs(methodName)) {
     *         methodDesc.invoke(foo, ...); // Invoke Foo's method
     *     }
     * }
     * </pre>
     *
     * @author higa
     * @see BeanDescFactory
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 24 01:52:43 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/lang/AnnotationUtil.java

            final Map<String, Object> map = newHashMap();
            final BeanDesc beanDesc = BeanDescFactory.getBeanDesc(annotation.annotationType());
            for (final String name : beanDesc.getMethodNames()) {
                final Object v = getProperty(beanDesc, annotation, name);
                if (v != null) {
                    map.put(name, v);
                }
            }
            return map;
        }
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 2.6K bytes
    - Viewed (0)
Back to top