/* * CS220_Visitor_Interface.java * * Created on Aug 18, 2007 * * by Donald Yessick */ /** * CS220_Visitor_Interface * @author Donald Yessick * @ */ public interface CS220_Visitor_Interface { void visit (Object object); }