Home | History | Annotate | Download | only in clearsilver

Lines Matching defs:hdf

26  * This class, and its subclasses must take care to wrap or unwrap HDF and CS
34 // Give it an empty HDF. We aren't going to be using the super object anyways.
44 * new DelegatedHdf object that wraps the specified HDF object.
46 * @param hdf an HDF object that should be wrapped in a new DelegatedHdf
49 * given HDF object.
51 protected abstract DelegatedHdf newDelegatedHdf(HDF hdf);
53 public void setGlobalHDF(HDF global) {
60 public HDF getGlobalHDF() {
61 HDF hdf = getCs().getGlobalHDF();
62 return hdf != null ? newDelegatedHdf(hdf) : null;