Example usage for org.apache.commons.vfs FileDepthSelector FileDepthSelector

List of usage examples for org.apache.commons.vfs FileDepthSelector FileDepthSelector

Introduction

In this page you can find the example usage for org.apache.commons.vfs FileDepthSelector FileDepthSelector.

Prototype

public FileDepthSelector(int minDepth, int maxDepth) 

Source Link

Usage

From source file:com.pongasoft.kiwidoc.builder.RepositoryContentHandler.java

@FieldInitializer
public void setDepth(int depth) {
    _fileSelector = new FileDepthSelector(1, depth);
}