1 package de.webman.generator; 2 3 /*4 * @author $Author: alex $5 * @version $Revision: 1.1 $6 */7 public interface SiteTreeVisitor {8 9 void apply(SiteNode node) throws Exception ;10 11 void visitSiteNode(SiteNode node) throws Exception ;12 13 void visitSiteDocument(SiteDocument doc) throws Exception ;14 }