// Copyright 2004, Boutell.Com, Inc. // Released under the terms of the GNU General Public License, // version 2 or later. // Implement this interface to receive notifications // after each pass of MandelbrotSet.renderSet(). public interface MandelbrotUser { public void MandelbrotUpdated(); public void MandelbrotFinished(); };