Searched defs:foundType (Results 1 - 2 of 2) sorted by relevance
/openjdk7/jdk/src/share/classes/java/lang/annotation/ | ||
H A D | AnnotationTypeMismatchException.java | 54 private final String foundType; field in class:AnnotationTypeMismatchException 61 * @param foundType the (erroneous) type of data found in the annotation. 65 public AnnotationTypeMismatchException(Method element, String foundType) { argument 67 + " (Found data of type " + foundType + ")"); 69 this.foundType = foundType; 88 public String foundType() { method in class:AnnotationTypeMismatchException 89 return this.foundType; |
/openjdk7/jdk/src/share/classes/sun/reflect/annotation/ | ||
H A D | AnnotationTypeMismatchExceptionProxy.java | 39 private String foundType; field in class:AnnotationTypeMismatchExceptionProxy 47 AnnotationTypeMismatchExceptionProxy(String foundType) { argument 48 this.foundType = foundType; 57 return new AnnotationTypeMismatchException(member, foundType); |
Completed in 106 milliseconds