1. /*
  2. * @(#)AdjustmentListener.java 1.11 00/02/02
  3. *
  4. * Copyright 1996-2000 Sun Microsystems, Inc. All Rights Reserved.
  5. *
  6. * This software is the proprietary information of Sun Microsystems, Inc.
  7. * Use is subject to license terms.
  8. *
  9. */
  10. package java.awt.event;
  11. import java.util.EventListener;
  12. /**
  13. * The listener interface for receiving adjustment events.
  14. *
  15. * @author Amy Fowler
  16. * @version 1.11 02/02/00
  17. * @since 1.1
  18. */
  19. public interface AdjustmentListener extends EventListener {
  20. /**
  21. * Invoked when the value of the adjustable has changed.
  22. */
  23. public void adjustmentValueChanged(AdjustmentEvent e);
  24. }