diff --git a/docs/xml/Java.Lang.Reflect/AccessibleObject.xml b/docs/xml/Java.Lang.Reflect/AccessibleObject.xml index 15bcead70..b961b4c10 100644 --- a/docs/xml/Java.Lang.Reflect/AccessibleObject.xml +++ b/docs/xml/Java.Lang.Reflect/AccessibleObject.xml @@ -224,9 +224,9 @@ - To be added. - Added in 1. - To be added. + the Class object corresponding to the annotation type + Returns this object's annotation for the specified type if the annotation is present; otherwise, returns null. + this object's annotation for the specified annotation type if present; otherwise, null Added in 1.5. @@ -266,8 +266,8 @@ - Added in 1. - To be added. + Returns annotations that are present on this object. + annotations present on this object Added in 1.5. @@ -324,9 +324,9 @@ - To be added. - Added in 1. - To be added. + the Class object corresponding to the annotation type + Returns annotations of the specified type that are associated with this object. + all annotations of the specified type associated with this object; otherwise, an array of length zero Added in 1.8. @@ -382,9 +382,9 @@ - To be added. - Added in 1. - To be added. + the Class object corresponding to the annotation type + Returns this object's annotation for the specified type if the annotation is directly present; otherwise, returns null. + this object's annotation for the specified annotation type if directly present; otherwise, null Added in 1.8. @@ -424,8 +424,8 @@ - Added in 1. - To be added. + Returns annotations that are directly present on this object. + annotations directly present on this object Added in 1.5. @@ -482,9 +482,9 @@ - To be added. - Added in 1. - To be added. + the Class object corresponding to the annotation type + Returns annotations of the specified type that are directly present or indirectly present on this object. + all annotations of the specified type directly or indirectly present on this object; otherwise, an array of length zero Added in 1.8. @@ -526,11 +526,11 @@ - To be added. - To be added - To be added. + the Class object corresponding to the annotation type + Returns true if an annotation of the specified type is present on this object; otherwise, returns false. + true if an annotation of the specified annotation type is present on this object; otherwise, false - To be added + Returns true if an annotation of the specified type is present on this object; otherwise, returns false. This is equivalent to GetAnnotation(annotationClass) != null. Added in 1.5. diff --git a/docs/xml/Java.Lang.Reflect/Parameter.xml b/docs/xml/Java.Lang.Reflect/Parameter.xml index 16bb84f77..bc34b959e 100644 --- a/docs/xml/Java.Lang.Reflect/Parameter.xml +++ b/docs/xml/Java.Lang.Reflect/Parameter.xml @@ -141,11 +141,11 @@ - To be added. - To be added - To be added. + the Class object corresponding to the annotation type + Returns this parameter's annotation for the specified type if the annotation is present; otherwise, returns null. + this parameter's annotation for the specified annotation type if present; otherwise, null - To be added + Returns this parameter's annotation for the specified type if the annotation is present; otherwise, returns null. Java documentation for java.lang.reflect.Parameter.getAnnotation(java.lang.Class<T>). @@ -187,10 +187,10 @@ - To be added - To be added. + Returns annotations that are present on this parameter. + annotations present on this parameter - To be added + Returns annotations that are present on this parameter. If no annotations are present, the returned array has length zero. Modifying the returned array does not affect arrays returned to other callers. Java documentation for java.lang.reflect.Parameter.getAnnotations(). @@ -244,11 +244,11 @@ - To be added. - To be added - To be added. + the Class object corresponding to the annotation type + Returns annotations of the specified type that are associated with this parameter. + all annotations of the specified type associated with this parameter; otherwise, an array of length zero - To be added + Returns annotations that are associated with this parameter. For a repeatable annotation type, this method looks through a container annotation. If no annotations are associated, the returned array has length zero. Java documentation for java.lang.reflect.Parameter.getAnnotationsByType(java.lang.Class<T>). @@ -302,9 +302,9 @@ - To be added. - To be added. - To be added. + the Class object corresponding to the annotation type + Returns this parameter's annotation for the specified type if the annotation is directly present; otherwise, returns null. + this parameter's annotation for the specified annotation type if directly present; otherwise, null @@ -347,10 +347,10 @@ - To be added - To be added. + Returns annotations that are directly present on this parameter. + annotations directly present on this parameter - To be added + Returns annotations that are directly present on this parameter and ignores inherited annotations. If no annotations are directly present, the returned array has length zero. Modifying the returned array does not affect arrays returned to other callers. Java documentation for java.lang.reflect.Parameter.getDeclaredAnnotations(). @@ -404,9 +404,9 @@ - To be added. - To be added. - To be added. + the Class object corresponding to the annotation type + Returns annotations of the specified type that are directly present or indirectly present on this parameter. + all annotations of the specified type directly or indirectly present on this parameter; otherwise, an array of length zero @@ -441,10 +441,16 @@ - To be added. - To be added. - To be added. + the Class object corresponding to the annotation type + Returns true if an annotation of the specified type is present on this parameter; otherwise, returns false. + true if an annotation of the specified annotation type is present on this parameter; otherwise, false + Returns true if an annotation of the specified type is present on this parameter; otherwise, returns false. This is equivalent to GetAnnotation(annotationClass) != null. + + + Java documentation for java.lang.reflect.Parameter.isAnnotationPresent(java.lang.Class<? extends java.lang.annotation.Annotation>). + + Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.