KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > java > awt > event > AdjustmentListener


1 /*
2  * @(#)AdjustmentListener.java 1.14 03/12/19
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7
8 package java.awt.event;
9
10 import java.util.EventListener JavaDoc;
11
12 /**
13  * The listener interface for receiving adjustment events.
14  *
15  * @author Amy Fowler
16  * @version 1.14 12/19/03
17  * @since 1.1
18  */

19 public interface AdjustmentListener extends EventListener JavaDoc {
20
21     /**
22      * Invoked when the value of the adjustable has changed.
23      */

24     public void adjustmentValueChanged(AdjustmentEvent JavaDoc e);
25
26 }
27
Popular Tags