Lines Matching full:list
4 import java.util.List;
22 * @return A list of loadpaths in order in which to search.
25 public static List<String> getLoadPaths(HDF hdf) {
26 List<String> list = new LinkedList<String>();
34 list.add(lpHdf.objValue());
36 return list;
40 * Given an ordered list of directories to look in, locate the specified file.
42 * @param loadpaths the ordered list of paths to search.
47 public static File locateFile(List<String> loadpaths, String filename) {