- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getPropertyName (0.05 sec)
-
src/test/java/org/codelibs/core/beans/impl/BeanDescImplTest.java
assertThat(propDesc.getPropertyName(), is("CCC")); assertThat(propDesc.getPropertyType(), is(sameClass(boolean.class))); assertThat(propDesc.getReadMethod(), is(notNullValue())); assertThat(propDesc.getWriteMethod(), is(nullValue())); propDesc = beanDesc.getPropertyDesc("eee"); assertThat(propDesc.getPropertyName(), is("eee"));
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Fri Jun 20 13:40:57 UTC 2025 - 13.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java
*/ protected void addPropertyDesc(final PropertyDescImpl propertyDesc) { assertArgumentNotNull("propertyDesc", propertyDesc); propertyDescCache.put(propertyDesc.getPropertyName(), propertyDesc); } /** * Prepares the constructors. */ protected void setupConstructorDescs() { for (final Constructor<?> constructor : beanClass.getConstructors()) {
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
parameterizedClassDesc = ParameterizedClassDescFactory.createParameterizedClassDesc(writeMethod, 0, typeVariables); } } @Override public final String getPropertyName() { return propertyName; } @Override @SuppressWarnings("unchecked") public final <T> Class<T> getPropertyType() { return (Class<T>) propertyType; }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 24 01:52:43 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/util/BeanUtil.java
final BeanDesc destBeanDesc = BeanDescFactory.getBeanDesc(dest.getClass()); for (final PropertyDesc srcPropertyDesc : srcBeanDesc.getPropertyDescs()) { final String srcPropertyName = srcPropertyDesc.getPropertyName(); if (!srcPropertyDesc.isReadable() || !options.isTargetProperty(srcPropertyName)) { continue; } final String destPropertyName = options.trimPrefix(srcPropertyName);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 23.5K bytes - Viewed (0)