[cvs] expresso commit by rimovm: Javadoc error removal
JCorporate Ltd
jcorp at jcorporate.com
Sat Jan 1 15:48:36 UTC 2005
Log Message:
-----------
Javadoc error removal
Modified Files:
--------------
expresso/expresso-web/WEB-INF/src/com/jcorporate/expresso/core/dataobjects:
DataObject.java
Revision Data
-------------
Index: DataObject.java
===================================================================
RCS file: /home/javacorp/.cvs/expresso/expresso/expresso-web/WEB-INF/src/com/jcorporate/expresso/core/dataobjects/DataObject.java,v
retrieving revision 1.22
retrieving revision 1.23
diff -Lexpresso-web/WEB-INF/src/com/jcorporate/expresso/core/dataobjects/DataObject.java -Lexpresso-web/WEB-INF/src/com/jcorporate/expresso/core/dataobjects/DataObject.java -u -r1.22 -r1.23
--- expresso-web/WEB-INF/src/com/jcorporate/expresso/core/dataobjects/DataObject.java
+++ expresso-web/WEB-INF/src/com/jcorporate/expresso/core/dataobjects/DataObject.java
@@ -152,6 +152,7 @@
*
* @param fieldName the name of the field to get
* @return Object or null.
+ * @throws DataException upon error.
*/
Object get(String fieldName) throws DataException;
@@ -160,6 +161,7 @@
*
* @param fieldName the name of the field to set
* @param o the object value to set it to.
+ * @throws DataException upon error.
*/
void set(String fieldName, Object o) throws DataException;
@@ -171,6 +173,7 @@
*
* @throws DataException upon setField error.
* @since Expresso 5.6
+ * @throws DataException upon error.
*/
void setFieldsWithDefaults() throws DataException;
@@ -185,23 +188,27 @@
/**
* Adds the record to the defined data source.
+ * @throws DBException upon error.
*/
void add() throws DBException;
/**
* Updates the record to the defined datasource
+ * @throws DBException upon error.
*/
void update() throws DBException;
/**
* Deletes this defined record.
+ * @throws DBException upon error.
*/
void delete() throws DBException;
/**
* Clears all currently loaded fields
+ * @throws DBException upon error.
*/
void clear() throws DBException;
More information about the cvs
mailing list