Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for expectedTypeFrom (7.94 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar

    methodName; private final int expectedNumberOfPara; private final int typedParameter; public void ReflectiveTypeFinder(String, int, int); public Class findExpectedType(Class); protected boolean canObtainExpectedTyp(reflect.Method); protected Class expectedTypeFrom(reflect.Method); } org/hamcrest/internal/SelfDescribingValue.class package org.hamcrest.internal; public synchronized class SelfDescribingValue implements org.hamcrest.SelfDescribing { private Object value; public void SelfDescribingValue(Object);...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 44K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    this.typedParameter = typedParameter; } public Class<?> findExpectedType(Class<?> fromClass) { for (Class<?> c = fromClass; c != Object.class; c = c.getSuperclass()) { for (Method method : c.getDeclaredMethods()) { if (canObtainExpectedTyp(method)) { return expectedTypeFrom(method); } } } throw new Error("Cannot determine correct type for " + methodName + "() method."); } /** * @param method The method to examine. * @return true if this method references the relevant type */ protected boolean canObtainExpectedTyp(Method...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 31.9K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    ang.Class<?> fromClass) canObtainExpectedTyp protected boolean canObtainExpectedTyp(java.lang.reflect.Method method) Parameters: method - The method to examine. Returns: true if this method references the relevant type expectedTypeFrom protected java.lang.Class<?> expectedTypeFrom(java.lang.reflect.Method method) Parameters: method - The method from which to extract Returns: The type we're looking for Overview Package Class Use Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES All...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 236.8K bytes
    - Viewed (0)
Back to top