Java Aspectj Usage arrayAsList(Object[] ra)

Here you can find the source of arrayAsList(Object[] ra)

Description

array As List

License

Open Source License

Declaration

public static List arrayAsList(Object[] ra) 

Method Source Code

//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);
    }
}

Related

  1. accessToString(int access_flags, boolean for_class)
  2. classOrInterface(int access_flags)
  3. collectArguments(JoinPoint jp)
  4. combine(String[] one, String[] two)
  5. convertToFile(String path)