1. /*
  2. * @(#)AdjustmentListener.java 1.9 01/11/29
  3. *
  4. * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package java.awt.event;
  8. import java.util.EventListener;
  9. /**
  10. * The listener interface for receiving adjustment events.
  11. *
  12. * @version 1.9 11/29/01
  13. * @author Amy Fowler
  14. */
  15. public interface AdjustmentListener extends EventListener {
  16. /**
  17. * Invoked when the value of the adjustable has changed.
  18. */
  19. public void adjustmentValueChanged(AdjustmentEvent e);
  20. }