
public interface Visitor {
	
	/** should have one for each type **/
	
	public void visit(Visitable o);
	
}
