Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for hasMethodDesc (0.05 sec)

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

         */
        @Test
        public void testHasMethodDesc() throws Exception {
            final BeanDesc beanDesc = new BeanDescImpl(MyBean.class);
            assertThat(beanDesc.hasMethodDesc("getAaa"), is(true));
            assertThat(beanDesc.hasMethodDesc("getaaa"), is(not(true)));
        }
    
        /**
         * @throws Exception
         */
        @Test(expected = MethodNotFoundRuntimeException.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)
  2. src/main/java/org/codelibs/core/beans/BeanDesc.java

         *
         * @param methodName
         *            The method name. Must not be {@literal null} or empty string
         * @return Whether the {@link MethodDesc} exists
         */
        boolean hasMethodDesc(String methodName);
    
        /**
         * Returns an array of {@link MethodDesc}.
         *
         * @param methodName
         *            The method name. Must not be {@literal null} or empty string
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 24 01:52:43 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

            if (methodDescs == null) {
                throw new MethodNotFoundRuntimeException(beanClass, methodName, null);
            }
            return methodDescs;
        }
    
        @Override
        public boolean hasMethodDesc(final String methodName) {
            assertArgumentNotEmpty("methodName", methodName);
    
            return methodDescsCache.containsKey(methodName);
        }
    
        @Override
        public String[] getMethodNames() {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 25.8K bytes
    - Viewed (1)
Back to top