Java List Value Add add(List result, ClassLoader loader)

Here you can find the source of add(List result, ClassLoader loader)

Description

add

License

Open Source License

Declaration

private static void add(List<ClassLoader> result, ClassLoader loader) 

Method Source Code


//package com.java2s;
//License from project: Open Source License 

import java.util.List;

public class Main {
    private static void add(List<ClassLoader> result, ClassLoader loader) {
        if (loader != null) {
            result.add(loader);//from  w w  w.  j a  va2  s .c om
        }
    }
}

Related

  1. add(final List list, final T... objects)
  2. add(final List toList, final List fromList)
  3. add(List list, int index, Object element)
  4. add(List valList, Object src)
  5. add(List list, E element)
  6. add(List list, E element)
  7. add(List list, int index, T item)
  8. add(List list, int index, T item)
  9. add(List vector, int[] sparseVector)