Home | History | Annotate | Download | only in adaptor

Lines Matching refs:hdf

26 import org.clearsilver.HDF;
35 * Adaptor that wraps a JSilver Data object so it can be used as an HDF object.
37 public class JHdf implements HDF {
56 static JHdf cast(HDF hdf) {
57 if (!(hdf instanceof JHdf)) {
58 throw new IllegalArgumentException("HDF object not of type JHdf. "
60 + "related HDF and CS objects.");
62 return (JHdf) hdf;
114 throw new JSilverBadSyntaxException("HDF parsing error : '" + errorMessage + "'",
160 public HDF getObj(String hdfpath) {
166 public HDF getChild(String hdfpath) {
184 public HDF getRootObj() {
194 public boolean belongsToSameRoot(HDF hdf) {
195 JHdf jHdf = cast(hdf);
200 public HDF getOrCreateObj(String hdfpath) {
215 public HDF objChild() {
225 public HDF objNext() {
231 public void copy(String hdfpath, HDF src) {
263 * long-lived HDF objects (e.g. global HDF).