Here you can find the source of createListOfOneItem(Object item)
public static List createListOfOneItem(Object item)
//package com.java2s; import java.util.ArrayList; import java.util.List; public class Main { public static List createListOfOneItem(Object item) { List list = new ArrayList(); list.add(item);/* w ww . j av a 2 s. c om*/ return list; } }