1. /*
  2. * @(#)PropertyChangeListener.java 1.14 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.beans;
  11. /**
  12. * A "PropertyChange" event gets fired whenever a bean changes a "bound"
  13. * property. You can register a PropertyChangeListener with a source
  14. * bean so as to be notified of any bound property updates.
  15. */
  16. public interface PropertyChangeListener extends java.util.EventListener {
  17. /**
  18. * This method gets called when a bound property is changed.
  19. * @param evt A PropertyChangeEvent object describing the event source
  20. * and the property that has changed.
  21. */
  22. void propertyChange(PropertyChangeEvent evt);
  23. }