Home | History | Annotate | Download | only in io

Lines Matching refs:depthLimit

260     private final int depthLimit;

278 * @param depthLimit controls how <i>deep</i> the hierarchy is
281 protected DirectoryWalker(FileFilter filter, int depthLimit) {
283 this.depthLimit = depthLimit;
297 * @param depthLimit controls how <i>deep</i> the hierarchy is
300 protected DirectoryWalker(IOFileFilter directoryFilter, IOFileFilter fileFilter, int depthLimit) {
310 this.depthLimit = depthLimit;
355 if (depthLimit < 0 || childDepth <= depthLimit) {