Searched defs:DelegatedHdf (Results 1 - 1 of 1) sorted by relevance

/external/jsilver/src/org/clearsilver/
H A DDelegatedHdf.java32 public abstract class DelegatedHdf implements HDF { class in inherits:HDF
36 public DelegatedHdf(HDF hdf) { method in class:DelegatedHdf
38 throw new NullPointerException("Null HDF is not allowed in constructor of DelegatedHdf.");
46 * @param hdf the possibly DelegatedHdf to unwrap
47 * @return the innermost non-DelegatedHdf HDF object.
50 while (hdf instanceof DelegatedHdf) {
51 hdf = ((DelegatedHdf)hdf).getHdf();
62 * new DelegatedHdf object that wraps the specified HDF object.
64 * @param hdf an HDF object that should be wrapped in a new DelegatedHdf
66 * @return an object that is a subclass of DelegatedHdf an
[all...]

Completed in 245 milliseconds