001package org.javasimon.console; 002 003import java.io.IOException; 004 005import org.javasimon.Simon; 006 007/** 008 * Callback interface used when visiting Simon manager and it Simons. 009 * 010 * @see SimonVisitors 011 * @author gquintana 012 */ 013public interface SimonVisitor { 014 015 void visit(Simon simon) throws IOException; 016}