[cvs] expresso commit by lhamel: javadoc
JCorporate Ltd
jcorp at jcorporate.com
Thu Mar 3 21:17:55 UTC 2005
Log Message:
-----------
javadoc
Modified Files:
--------------
expresso/expresso-web/WEB-INF/src/com/jcorporate/expresso/core/dbobj:
MultiDBObject.java
Revision Data
-------------
Index: MultiDBObject.java
===================================================================
RCS file: /home/javacorp/.cvs/expresso/expresso/expresso-web/WEB-INF/src/com/jcorporate/expresso/core/dbobj/MultiDBObject.java,v
retrieving revision 1.69
retrieving revision 1.70
diff -Lexpresso-web/WEB-INF/src/com/jcorporate/expresso/core/dbobj/MultiDBObject.java -Lexpresso-web/WEB-INF/src/com/jcorporate/expresso/core/dbobj/MultiDBObject.java -u -r1.69 -r1.70
--- expresso-web/WEB-INF/src/com/jcorporate/expresso/core/dbobj/MultiDBObject.java
+++ expresso-web/WEB-INF/src/com/jcorporate/expresso/core/dbobj/MultiDBObject.java
@@ -1331,28 +1331,26 @@
/* getDBObject(String) */
/**
- * Get the actual DBField value specified by fieldname
+ * Get the DBField value specified by fieldname
* <p/>
* Creation date: (9/18/00 11:37:10 AM)
*
* @param shortName the shortname of the field
* @param fieldName name of the field to retrieve
- * @return The value of the field/
+ * @return The value of the field; never null
*/
public String getField(String shortName, String fieldName) throws DBException {
DBObject oneObj = (DBObject) myDBObjects.get(shortName);
if (oneObj == null) {
String myName = thisClass + "getField(String, String)";
- throw new DBException(myName + ":No such object as '" + shortName +
- "'");
+ throw new DBException(myName + ": No such object as '" + shortName
+ + "'");
}
return oneObj.getField(fieldName);
}
-
- /* getFields(String, STring) */
-
+
private DBObject getByShortName(String shortName) throws DBException {
StringUtil.assertNotBlank(shortName, "Short name may not be blank");
More information about the cvs
mailing list