com.jdc.rdb.tbl.dao
Class ApplicationTableDAO
java.lang.Object
|
+--com.jdc.lang.Object
|
+--com.jdc.rdb.tbl.dao.DataAccessObject
|
+--com.jdc.rdb.tbl.dao.ApplicationTableDAO
- public abstract class ApplicationTableDAO
- extends DataAccessObject
ApplicationTableDAO represents a data access object for a database
application table. All data access object classes for application tables should
subclass this class.
An application table should implement, minimally, data access methods with the
following method signatures:
public boolean delete(DataTransferObject dto)
public boolean insert(DataTransferObject dto)
public DataTransferObject select(int key)
public boolean update(DataTransferObject dto)
- Version:
- 1.0
- Author:
- Jay Damon
- See Also:
ApplicationTableDTO
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ApplicationTableDAO
protected ApplicationTableDAO(Table table)
- Constructs a new
ApplicationTableDAO object.
Copyright © 2004 J. Damon & Co.; All Rights Reserved WorldWide.