- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for isBridge (0.78 sec)
-
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")) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 25.8K bytes - Viewed (1) -
src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java
break; } } } private void setupValueOfMethod() { for (final Method method : propertyType.getMethods()) { if (method.isBridge() || method.isSynthetic()) { continue; } if (ModifierUtil.isStatic(method.getModifiers()) && method.getName().equals("valueOf") && method.getParameterTypes().length == 1
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 24 01:52:43 UTC 2025 - 15.1K bytes - Viewed (0)