KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jdesktop > swing > decorator > PipelineListener


1 /*
2  * $Id: PipelineListener.java,v 1.1.1.1 2004/06/16 01:43:39 davidson1 Exp $
3  *
4  * Copyright 2004 Sun Microsystems, Inc., 4150 Network Circle,
5  * Santa Clara, California 95054, U.S.A. All rights reserved.
6  */

7
8 package org.jdesktop.swing.decorator;
9
10 import java.util.EventListener JavaDoc;
11
12 /**
13  * PipelineListener
14  *
15  * @author Ramesh Gupta
16  */

17 public interface PipelineListener extends EventListener JavaDoc {
18     /**
19      * Sent when the pipeline has changed in any way.
20      *
21      * @param e a <code>PipelineEvent</code> encapsulating the
22      * event information
23      */

24     void contentsChanged(PipelineEvent e);
25 }
26
27
Popular Tags