home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / VCafe / prosrc.bin / DataItemChangedListener.java < prev    next >
Encoding:
Java Source  |  1998-03-18  |  381 b   |  15 lines

  1. /*
  2.  * @(#DataItemChangedListener.java
  3.  *
  4.  * Copyright (c) 1997 Symantec Corporation. All Rights Reserved.
  5.  *
  6.  */
  7.  
  8.  
  9. package symantec.itools.db.beans.binding.databus;
  10. public interface DataItemChangedListener
  11. {
  12. public void notifyDataItemChanged(DataItemChangedEvent e);
  13.  
  14.    //  Allows a DataItem to send the DataItemChangedListener a notification of data modification.
  15. }