Searched refs:foundType (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/java/lang/annotation/
H A DAnnotationTypeMismatchException.java54 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 DAnnotationTypeMismatchExceptionProxy.java39 private String foundType; field in class:AnnotationTypeMismatchExceptionProxy
47 AnnotationTypeMismatchExceptionProxy(String foundType) { argument
48 this.foundType = foundType;
57 return new AnnotationTypeMismatchException(member, foundType);
/openjdk7/jdk/test/java/lang/annotation/AnnotationTypeMismatchException/
H A DFoundType.java27 * @summary AnnotationTypeMismatchException.foundType method shouldn't loop.
41 if (!TYPE.equals(ex.foundType()))

Completed in 39 milliseconds