Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for getMethodName (0.17 sec)

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

            final BeanDesc beanDesc = new BeanDescImpl(MyBean.class);
            final MethodDesc methodDesc = beanDesc.getMethodDesc("getAaa");
            assertThat(methodDesc, is(notNullValue()));
            assertThat(methodDesc.getMethodName(), is("getAaa"));
            beanDesc.getMethodDesc("getaaa");
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testGetMethodNoException() throws Exception {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 13.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/exception/NoSuchMethodRuntimeException.java

         *
         * @return ターゲットクラス
         */
        public Class<?> getTargetClass() {
            return targetClass;
        }
    
        /**
         * メソッド名を返します。
         *
         * @return メソッド名
         */
        public String getMethodName() {
            return methodName;
        }
    
        /**
         * 引数型の並びを返します。
         *
         * @return 引数型の並び
         */
        public Class<?>[] getArgTypes() {
            return argTypes;
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/exception/MethodNotFoundRuntimeException.java

         * @return ターゲットの{@link Class}
         */
        public Class<?> getTargetClass() {
            return targetClass;
        }
    
        /**
         * メソッド名を返します。
         *
         * @return メソッド名
         */
        public String getMethodName() {
            return methodName;
        }
    
        /**
         * メソッドの引数の{@link Class}の配列を返します。
         *
         * @return メソッドの引数の{@link Class}の配列
         */
        public Class<?>[] getMethodArgClasses() {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/core/beans/impl/MethodDescTest.java

            assertThat(foo, is(notNullValue()));
            assertThat(foo.getBeanDesc(), is(sameInstance(beanDesc)));
            assertThat(foo.getMethod(), is(MyBean.class.getMethod("foo")));
            assertThat(foo.getMethodName(), is("foo"));
            assertThat(foo.getParameterTypes().length, is(0));
            assertThat(foo.isPublic(), is(true));
            assertThat(foo.isStatic(), is(not(true)));
            assertThat(foo.isFinal(), is(not(true)));
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/beans/MethodDesc.java

        /**
         * メソッドを返します。
         *
         * @return コンストラクタ
         */
        Method getMethod();
    
        /**
         * メソッド名を返します。
         *
         * @return メソッド名
         */
        String getMethodName();
    
        /**
         * メソッドの引数型の配列を返します。
         *
         * @return メソッドの引数型の配列
         */
        Class<?>[] getParameterTypes();
    
        /**
         * メソッドの戻り値の型を返します。
         *
         * @param <T>
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 6.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/exception/MethodNotStaticRuntimeException.java

         *
         * @return ターゲットクラス
         */
        public Class<?> getTargetClass() {
            return targetClass;
        }
    
        /**
         * メソッド名を返します。
         *
         * @return メソッド名
         */
        public String getMethodName() {
            return methodName;
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/beans/impl/MethodDescImpl.java

        @Override
        public BeanDesc getBeanDesc() {
            return beanDesc;
        }
    
        @Override
        public Method getMethod() {
            return method;
        }
    
        @Override
        public String getMethodName() {
            return methodName;
        }
    
        @Override
        public Class<?>[] getParameterTypes() {
            return parameterTypes;
        }
    
        @SuppressWarnings("unchecked")
        @Override
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 7.4K bytes
    - Viewed (0)
Back to top