Here you can find the source of fillArray(Object[] array, Object value)
public static void fillArray(Object[] array, Object value)
//package com.java2s; public class Main { /**//from ww w . j ava 2 s. c o m * Fills the array with a value. */ public static void fillArray(Object[] array, Object value) { int to = array.length; while (--to >= 0) { array[to] = value; } } /** * Fills the int array with a value */ public static void fillArray(int[] array, int value) { int to = array.length; while (--to >= 0) { array[to] = value; } } }