Home | History | Annotate | Download | only in clearsilver

Lines Matching full:loadpaths

30   public static final String HDF_LOADPATHS = "hdf.loadpaths";
33 * Helper function that returns a concatenation of the loadpaths in the
36 * @return A list of loadpaths in order in which to search.
37 * @throws NullPointerException if no loadpaths are found.
44 * Helper function that returns a concatenation of the loadpaths in the
48 * no loadpaths are found in the HDF object, otherwise a
49 * {@link NullPointerException} is thrown. Loadpaths are not needed if
51 * @return A list of loadpaths in order in which to search.
52 * @throws NullPointerException if no loadpaths are found and allowEmpty is
62 throw new NullPointerException("No HDF loadpaths located in the "
76 * @param loadpaths the ordered list of paths to search.
81 public static File locateFile(List<String> loadpaths, String filename) {
85 if (loadpaths == null) {
86 throw new NullPointerException("No loadpaths provided.");
88 for (String path : loadpaths) {