Searched refs:startDirectory (Results 1 - 1 of 1) sorted by relevance
/packages/apps/Email/src/org/apache/commons/io/ |
H A D | DirectoryWalker.java | 59 * public List clean(File startDirectory) {
61 * walk(startDirectory, results);
210 * protected void handleCancelled(File startDirectory, Collection results, CancelException cancel) {
242 * protected void handleCancelled(File startDirectory, Collection results, CancelException cancel) {
324 * @param startDirectory the directory to start from, not null
329 protected final void walk(File startDirectory, Collection results) throws IOException {
argument 330 if (startDirectory == null) {
334 handleStart(startDirectory, results);
335 walk(startDirectory, 0, results);
338 handleCancelled(startDirectory, result 453 handleCancelled(File startDirectory, Collection results, CancelException cancel) argument 469 handleStart(File startDirectory, Collection results) argument [all...] |
Completed in 15 milliseconds