Fix MergedAnnotations javadoc
This commit is contained in:
parent
55ac110f7b
commit
87dba5a4df
|
@ -138,8 +138,9 @@ public interface MergedAnnotations extends Iterable<MergedAnnotation<Annotation>
|
||||||
<A extends Annotation> boolean isPresent(Class<A> annotationType);
|
<A extends Annotation> boolean isPresent(Class<A> annotationType);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Determine if the specified annotation is directly present.
|
* Determine if the specified annotation is either directly present or
|
||||||
* <p>Equivalent to calling {@code get(annotationType).isDirectlyPresent()}.
|
* meta-present.
|
||||||
|
* <p>Equivalent to calling {@code get(annotationType).isPresent()}.
|
||||||
* @param annotationType the fully qualified class name of the annotation type
|
* @param annotationType the fully qualified class name of the annotation type
|
||||||
* to check
|
* to check
|
||||||
* @return {@code true} if the annotation is present
|
* @return {@code true} if the annotation is present
|
||||||
|
@ -155,9 +156,8 @@ public interface MergedAnnotations extends Iterable<MergedAnnotation<Annotation>
|
||||||
<A extends Annotation> boolean isDirectlyPresent(Class<A> annotationType);
|
<A extends Annotation> boolean isDirectlyPresent(Class<A> annotationType);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Determine if the specified annotation is either directly present or
|
* Determine if the specified annotation is directly present.
|
||||||
* meta-present.
|
* <p>Equivalent to calling {@code get(annotationType).isDirectlyPresent()}.
|
||||||
* <p>Equivalent to calling {@code get(annotationType).isPresent()}.
|
|
||||||
* @param annotationType the fully qualified class name of the annotation type
|
* @param annotationType the fully qualified class name of the annotation type
|
||||||
* to check
|
* to check
|
||||||
* @return {@code true} if the annotation is present
|
* @return {@code true} if the annotation is present
|
||||||
|
|
Loading…
Reference in New Issue