public interface Visitor {
  public void visit(Fruit fruit);
  public void visit(Book book);
}