01: package com.salmonllc.xml;
02:
03: /////////////////////////
04: //$Archive: /JADE/SourceCode/com/salmonllc/xml/ResultSetData.java $
05: //$Author: Srufle $
06: //$Revision: 8 $
07: //$Modtime: 7/31/02 6:11p $
08: /////////////////////////
09: /**
10: * This object contains the rows of a datastore. Each row is a collection (Vector) of Columns objects.
11: * Creation date: (7/20/01 12:02:58 PM)
12: * @author: Administrator
13: */
14: public class ResultSetData {
15:
16: private java.util.Vector fieldRows = new java.util.Vector();
17:
18: /**
19: * ResultSetData constructor comment.
20: */
21: public ResultSetData() {
22: super ();
23: }
24:
25: /**
26: * Get the vector of all rows of a datastore
27: * Creation date: (8/7/01 12:01:53 PM)
28: * @return java.util.Vector
29: */
30: public java.util.Vector getRows() {
31: return fieldRows;
32: }
33:
34: /**
35: * Sets the Rows for a Result set
36: * Creation date: (8/7/01 12:01:53 PM)
37: * @param newRows java.util.Vector
38: */
39: public void setRows(java.util.Vector newRows) {
40: fieldRows = newRows;
41: }
42: }
|