• Home
  • Raw
  • Download

Lines Matching refs:hdf

34   private final HDF hdf;  field in DelegatedHdf
36 public DelegatedHdf(HDF hdf) { in DelegatedHdf() argument
37 if (hdf == null) { in DelegatedHdf()
40 this.hdf = hdf; in DelegatedHdf()
49 public static HDF getFullyUnwrappedHdf(HDF hdf) { in getFullyUnwrappedHdf() argument
50 while (hdf instanceof DelegatedHdf) { in getFullyUnwrappedHdf()
51 hdf = ((DelegatedHdf)hdf).getHdf(); in getFullyUnwrappedHdf()
53 return hdf; in getFullyUnwrappedHdf()
57 return hdf; in getHdf()
69 protected abstract DelegatedHdf newDelegatedHdf(HDF hdf); in newDelegatedHdf() argument
133 HDF hdf = getHdf().getObj(hdfpath); in getObj() local
134 return hdf != null ? newDelegatedHdf(hdf) : null; in getObj()
138 HDF hdf = getHdf().getChild(hdfpath); in getChild() local
139 return hdf != null ? newDelegatedHdf(hdf) : null; in getChild()
143 HDF hdf = getHdf().getRootObj(); in getRootObj() local
144 return hdf != null ? newDelegatedHdf(hdf) : null; in getRootObj()
147 public boolean belongsToSameRoot(HDF hdf) { in belongsToSameRoot() argument
148 return getFullyUnwrappedHdf(this).belongsToSameRoot(getFullyUnwrappedHdf(hdf)); in belongsToSameRoot()
152 HDF hdf = getHdf().getOrCreateObj(hdfpath); in getOrCreateObj() local
153 return hdf != null ? newDelegatedHdf(hdf) : null; in getOrCreateObj()
165 HDF hdf = getHdf().objChild(); in objChild() local
166 return hdf != null ? newDelegatedHdf(hdf) : null; in objChild()
170 HDF hdf = getHdf().objNext(); in objNext() local
171 return hdf != null ? newDelegatedHdf(hdf) : null; in objNext()