001 /* 002 * RecipieListener.java 003 * 004 * Created on December 10, 2002, 4:59 PM 005 */ 006 007 package spirograph; 008 009 /** 010 * An interface that makes a class eligible for receiveing notifications of 011 * state changes of a recipie. 012 * 013 * <p>Copyright © 2003 Franklin W. Olin College of Engineering.</p> 014 * 015 * @author Patrick G. Heck, gus.heck@olin.edu 016 * @version $Id: RecipieListener.java,v 1.4 2003/01/15 17:39:48 gus Exp $ 017 */ 018 public interface RecipieListener { 019 020 /** 021 * Signals that a recipie has been edited. 022 * 023 * @param ce A change event identifying the Recipie that has changed. 024 */ 025 public void recipieUpdated(javax.swing.event.ChangeEvent ce); 026 027 } 028 029 /* 030 * $Log: RecipieListener.java,v $ 031 * Revision 1.4 2003/01/15 17:39:48 gus 032 * javadoc tweak 033 * 034 * Revision 1.3 2003/01/15 17:36:10 gus 035 * adding log keywords to files that don't have them 036 * 037 */