Lines Matching full:hdf
30 public static final String HDF_LOADPATHS = "hdf.loadpaths";
34 * provided HDF.
35 * @param hdf an HDF structure containing load paths.
39 public static List<String> getLoadPaths(HDF hdf) {
40 return getLoadPaths(hdf, false);
45 * provided HDF.
46 * @param hdf an HDF structure containing load paths.
48 * no loadpaths are found in the HDF object, otherwise a
55 public static List<String> getLoadPaths(HDF hdf, boolean allowEmpty) {
57 HDF loadpathsHdf = hdf.getObj(HDF_LOADPATHS);
62 throw new NullPointerException("No HDF loadpaths located in the "
63 + "specified HDF structure");
66 for (HDF lpHdf = loadpathsHdf.objChild(); lpHdf != null;