Here you can find the source of arrayAsList(Object[] ra)
public static List arrayAsList(Object[] ra)
//package com.java2s; /* ******************************************************************* * Copyright (c) 1999-2000 Xerox Corporation. * All rights reserved. // w ww .java2 s.c o m * This program and the accompanying materials are made available * under the terms of the Eclipse Public License v1.0 * which accompanies this distribution and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Xerox/PARC initial implementation * ******************************************************************/ import java.util.List; public class Main { public static List arrayAsList(Object[] ra) { return org.aspectj.util.LangUtil.arrayAsList(ra); } }