home *** CD-ROM | disk | FTP | other *** search
Java Source | 1997-06-19 | 1.0 KB | 44 lines |
- /*
- * DbaDataLink.java 1.0 12 Jan 1997
- *
- * Copyright (c) 1996 Krumel & Associates, Inc. All Rights Reserved.
- *
- * This software is provided as is. Krumel & Associates shall not be liable
- * for any damages suffered by licensee as a result of using, modifying or
- * distributing this software or its derivatives.
- */
-
- package symantec.itools.db.awt;
-
- import symantec.itools.db.pro.*;
- import symjava.sql.SQLException ;
-
- class DbaDataLink implements RecordSetLink, RecordLink
- {
- DbaDataStore store;
- int recordNumber;
- RelationView rv;
-
- public DbaDataLink(DbaDataStore s)
- {
- store = s;
- }
-
- public void init()
- {
- recordNumber = -1;
- }
-
- public void notifyRecordSetChange(RelationView rv) throws SQLException
- {
- store.resetRows();
- }
-
- public void notifyRecordChange (Record currentRec) throws SQLException
- {
- if (currentRec != null)
- {
- store.notifyRecordChange();
- }
- }
- }