1 /*2 * @(#)AdjustmentListener.java 1.14 03/12/193 *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 ;11 12 /**13 * The listener interface for receiving adjustment events. 14 *15 * @author Amy Fowler16 * @version 1.14 12/19/0317 * @since 1.118 */19 public interface AdjustmentListener extends EventListener {20 21 /**22 * Invoked when the value of the adjustable has changed.23 */ 24 public void adjustmentValueChanged(AdjustmentEvent e);25 26 }27