1. /*
  2. * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
  3. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  4. */
  5. package javax.sql;
  6. /**
  7. * A RowSetEvent is generated when something important happens in the
  8. * life of a rowset, like when a column value changes.
  9. */
  10. public class RowSetEvent extends java.util.EventObject {
  11. /**
  12. * Construct a RowSetEvent object.
  13. *
  14. * @param source the source of the event
  15. */
  16. public RowSetEvent(RowSet source)
  17. { super(source); }
  18. }