1 /***
2 *
3 */
4 package com.fernsroth.squashfs;
5
6 import com.fernsroth.squashfs.model.BaseFile;
7 import com.fernsroth.squashfs.model.Directory;
8
9 /***
10 *
11 * @author Joseph M. Ferner (Near Infinity Corporation)
12 */
13 public interface WalkHandler {
14
15 /***
16 * @param path the path where the file resides.
17 * @param file the file visited.
18 * @throws Exception
19 */
20 void visit(Directory[] path, BaseFile file) throws Exception;
21
22 }