1 19 20 package org.openidex.search; 21 22 import org.openide.filesystems.FileObject; 23 24 32 public interface FileObjectFilter { 33 34 35 public static final int DO_NOT_TRAVERSE = 0; 36 37 public static final int TRAVERSE = 1; 38 42 public static final int TRAVERSE_ALL_SUBFOLDERS = 2; 43 44 53 public boolean searchFile(FileObject file) 54 throws IllegalArgumentException ; 55 56 70 public int traverseFolder(FileObject folder) 71 throws IllegalArgumentException ; 72 73 } 74 | Popular Tags |