/** * ColorListener.java 1.00 97/04/12 Merlin Hughes * * Copyright (c) 1997 Prominence Dot Com, Inc. All Rights Reserved. * * Permission to use, copy, modify, and distribute this software * for commercial and non-commercial purposes and without fee is * hereby granted provided that this copyright notice appears in * all copies. * * http://prominence.com/ merlin@prominence.com */ import java.util.EventListener; public interface ColorListener extends EventListener { public void colorPicked (ColorEvent e); }