Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for isBridge (0.41 seconds)

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

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

            return false;
        }
    
        /**
         * Prepares {@link PropertyDesc}.
         */
        protected void setupPropertyDescs() {
            for (final Method m : beanClass.getMethods()) {
                if (m.isBridge() || m.isSynthetic()) {
                    continue;
                }
                final String methodName = m.getName();
                if (methodName.startsWith("get")) {
    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