1 package de.webman.generator; 2 3 /*4 * @author $Author: alex $5 * @version $Revision: 1.1 $6 */7 public interface Visitable {8 9 void accept(SiteTreeVisitor visitor) throws Exception ;10 }