1. /*
  2. * @(#)AdjustmentListener.java 1.13 03/01/23
  3. *
  4. * Copyright 2003 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. * @author Amy Fowler
  13. * @version 1.13 01/23/03
  14. * @since 1.1
  15. */
  16. public interface AdjustmentListener extends EventListener {
  17. /**
  18. * Invoked when the value of the adjustable has changed.
  19. */
  20. public void adjustmentValueChanged(AdjustmentEvent e);
  21. }