Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for getMethodName (8.95 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/testers/AbstractListIndexOfTester.java

      protected abstract String getMethodName();
    
      @CollectionSize.Require(absent = ZERO)
      public void testFind_yes() {
        assertEquals(
            getMethodName() + "(firstElement) should return 0", 0, find(getOrderedElements().get(0)));
      }
    
      public void testFind_no() {
        assertEquals(getMethodName() + "(notPresent) should return -1", -1, find(e3()));
      }
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Apr 20 11:19:03 GMT 2023
    - 3.2K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/collect/testing/testers/AbstractListIndexOfTester.java

      protected abstract String getMethodName();
    
      @CollectionSize.Require(absent = ZERO)
      public void testFind_yes() {
        assertEquals(
            getMethodName() + "(firstElement) should return 0", 0, find(getOrderedElements().get(0)));
      }
    
      public void testFind_no() {
        assertEquals(getMethodName() + "(notPresent) should return -1", -1, find(e3()));
      }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Apr 20 11:19:03 GMT 2023
    - 3.2K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/upgrades/UpgradedProperty.java

        }
    
        public String getContainingType() {
            return containingType;
        }
    
        public String getPropertyName() {
            return propertyName;
        }
    
        public String getMethodName() {
            return methodName;
        }
    
        public String getMethodDescriptor() {
            return methodDescriptor;
        }
    
        public List<ReplacedAccessor> getReplacedAccessors() {
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Apr 23 08:40:36 GMT 2024
    - 6.2K 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/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)
  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/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)
  8. 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)
  9. 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)
  10. 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)
Back to top