001package horstmann.ch10_visitor; 002/** 003 The common interface for file and directory nodes. 004 */ 005public interface FileSystemNode 006{ 007 void accept(FileSystemVisitor v); 008}