1 /* 2 * joey-gen and its relative products are published under the terms 3 * of the Apache Software License. 4 * 5 * Created on 2004/08/15 14:44:23 6 */ 7 package org.asyrinx.joey.gen.model; 8 9 /*** 10 * @author akima 11 */ 12 public interface ElementVisitor { 13 14 public void visit(Element element); 15 16 }