Lines Matching defs:array

84  * <li>{@link #getNotifications()} returns an empty array if the MBean
150 * <p>True if this class is known not to override the array-valued
158 * cannot access the corresponding array directly.</p>
176 * This may be null with the same effect as a zero-length array.
179 * array.
181 * may be null with the same effect as a zero-length array.
183 * may be null with the same effect as a zero-length array.
210 * This may be null with the same effect as a zero-length array.
213 * array.
215 * may be null with the same effect as a zero-length array.
217 * may be null with the same effect as a zero-length array.
304 * The returned array is a shallow copy of the internal array,
305 * which means that it is a copy of the internal array of
309 * @return An array of <CODE>MBeanAttributeInfo</CODE> objects.
327 * Return the value of the attributes field, or an empty array if
334 * various array fields as non-final, which is annoying because
346 * The returned array is a shallow copy of the internal array,
347 * which means that it is a copy of the internal array of
351 * @return An array of <CODE>MBeanOperationInfo</CODE> objects.
378 * <p>The returned array is a shallow copy of the internal array,
379 * which means that it is a copy of the internal array of
390 * @return An array of <CODE>MBeanConstructorInfo</CODE> objects.
416 * The returned array is a shallow copy of the internal array,
417 * which means that it is a copy of the internal array of
421 * @return An array of <CODE>MBeanNotificationInfo</CODE> objects.
529 private static int arrayHashCode(Object[] array) {
531 for (int i = 0; i < array.length; i++)
532 hash ^= array[i].hashCode();