Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getFieldDesc (0.04 sec)

  1. src/test/java/org/codelibs/core/beans/impl/FieldDescImplTest.java

            final FieldDesc aaa = beanDesc.getFieldDesc("aaa");
            aaa.getStaticFieldValue();
        }
    
        /**
         * @throws Exception
         */
        @Test(expected = FieldNotStaticRuntimeException.class)
        public void testAaa_SetStaticFieldValue() throws Exception {
            final BeanDesc beanDesc = new BeanDescImpl(MyBean.class);
            final FieldDesc aaa = beanDesc.getFieldDesc("aaa");
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/beans/BeanDesc.java

         * @return {@link FieldDesc}
         */
        FieldDesc getFieldDesc(String fieldName);
    
        /**
         * Returns the {@link FieldDesc}.
         *
         * @param index
         *            The index of the {@link FieldDesc}
         * @return {@link FieldDesc}
         */
        FieldDesc getFieldDesc(int index);
    
        /**
         * Returns the number of {@link FieldDesc}.
         *
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 24 01:52:43 UTC 2025
    - 7.9K bytes
    - Viewed (0)
Back to top