home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / Visual Cafe Pro v1.0 / SOURCE.BIN / DbDataUpdater.java < prev    next >
Encoding:
Java Source  |  1997-06-19  |  748 b   |  21 lines

  1. /*
  2.  * DbDataUpdater.java   1.0   12 Jan 1997
  3.  *
  4.  * Copyright (c) 1996 Krumel & Associates, Inc.  All Rights Reserved.
  5.  *
  6.  * This software is provided as is.  Krumel & Associates shall not be liable
  7.  * for any damages suffered by licensee as a result of using, modifying or
  8.  * distributing this software or its derivatives.
  9.  */
  10.  
  11. package symantec.itools.db.awt;
  12.  
  13. public interface DbDataUpdater {
  14.     public void setDbDataSource(DbDataSource ds);
  15.  
  16.     public void deleteRow(int row) throws TypeNotSupported;
  17.     public void undeleteRow(int row) throws TypeNotSupported;
  18.     public void save() throws TypeNotSupported;
  19.     public void insertRow(int row) throws TypeNotSupported;
  20.     public int appendRow() throws TypeNotSupported;
  21. }