Home | History | Annotate | Download | only in clearsilver

Lines Matching defs:list

21 import java.util.List;
36 * @return A list of loadpaths in order in which to search.
39 public static List<String> getLoadPaths(HDF hdf) {
47 * @param allowEmpty if {@code true} then this will return an empty list when
51 * @return A list of loadpaths in order in which to search.
55 public static List<String> getLoadPaths(HDF hdf, boolean allowEmpty) {
56 List<String> list = new LinkedList<String>();
60 return list;
68 list.add(lpHdf.objValue());
70 return list;
74 * Given an ordered list of directories to look in, locate the specified file.
76 * @param loadpaths the ordered list of paths to search.
81 public static File locateFile(List<String> loadpaths, String filename) {