Here you can find the source of addArray(Vector vector, Object[] array)
static Vector addArray(Vector vector, Object[] array)
//package com.java2s; /*// ww w .j av a 2s . c o m // $Id: //open/mondrian/src/main/mondrian/olap/fun/FunUtil.java#18 $ // (C) Copyright 2002 Kana Software, Inc. // This software is subject to the terms of the Common Public License // Agreement, available at the following URL: // http://www.opensource.org/licenses/cpl.html. // (C) Copyright 2002 Kana Software, Inc. and others. // All Rights Reserved. // You must accept the terms of that agreement to use this software. // // jhyde, 3 March, 2002 */ import java.util.*; public class Main { static Vector addArray(Vector vector, Object[] array) { for (int i = 0; i < array.length; i++) { vector.addElement(array[i]); } return vector; } }