- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for getPropertyDescSize (0.13 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java
} @Override public PropertyDesc getPropertyDesc(final int index) { assertArgumentArrayIndex("index", index, getPropertyDescSize()); return propertyDescCache.getAt(index); } @Override public int getPropertyDescSize() { return propertyDescCache.size(); } @Override public Iterable<PropertyDesc> getPropertyDescs() {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) -
src/main/java/org/codelibs/core/beans/BeanDesc.java
*/ PropertyDesc getPropertyDesc(int index); /** * Returns the number of {@link PropertyDesc}. * * @return The number of {@link PropertyDesc} */ int getPropertyDescSize(); /** * Returns an {@link Iterable} of {@link PropertyDesc}. * * @return An {@link Iterable} of {@link PropertyDesc} */ Iterable<PropertyDesc> getPropertyDescs();Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 24 01:52:43 GMT 2025 - 7.9K bytes - Click Count (0) -
src/test/java/org/codelibs/core/beans/impl/BeanDescImplTest.java
/** * @throws Exception */ @Test public void testPropertyDesc() throws Exception { final BeanDesc beanDesc = new BeanDescImpl(MyBean.class); assertThat(beanDesc.getPropertyDescSize(), is(5)); PropertyDesc propDesc = beanDesc.getPropertyDesc("aaa"); assertThat(propDesc.getPropertyName(), is("aaa")); assertThat(propDesc.getPropertyType(), is(sameClass(String.class)));Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Fri Jun 20 13:40:57 GMT 2025 - 13.9K bytes - Click Count (0)