Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for III (0.14 sec)

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

            assertThat(propDesc.getPropertyType(), is(sameClass(Boolean.class)));
    
            assertThat(beanDesc.hasPropertyDesc("hhh"), is(not(true)));
            assertThat(beanDesc.hasPropertyDesc("iii"), is(not(true)));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testNewInstance() throws Exception {
            final BeanDesc beanDesc = new BeanDescImpl(Integer.class);
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 13.9K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/core/beans/impl/PropertyDescImplTest.java

            /**
             * @param hhh
             */
            public void setHhh(final Timestamp hhh) {
                hhh_ = hhh;
            }
    
            /**
             * @param iii
             */
            public void setIii(final String iii) {
            }
    
            /**
             * @return URL
             */
            public URL getURL() {
                return url_;
            }
    
            /**
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 11.1K bytes
    - Viewed (0)
Back to top