- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getPropertyDescSize (0.54 sec)
-
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() {
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/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)));
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Fri Jun 20 13:40:57 UTC 2025 - 13.9K bytes - Viewed (0)