01
02
03
04
05
06
07
08
package horstmann.ch10_visitor;
/**
   The common interface for file and directory nodes.
 */
public interface FileSystemNode
{
  void accept(FileSystemVisitor v);
}