1  /** 
2  * WsdlRowSet - Holds the result of a query in a serializable form 
3  * @since JDBCWizard./a> 4.0.2107 
4  * @since JDBCWizard./a> 5.0.2253 Implements serializable 
5  */ 
6   
7  package com.orindasoft.demo.generated;
8  
9  public class WsdlRowSet implements java.io.Serializable
10 {
11 
12 /**
13 * An Array holding the names of columns in a query.
14 * There is no requirement that these names be meaningful or unique.
15 */
16 public String[] columnNames;
17 
18 /**
19 * An Array of 0 or more WsdlRow that represent rows.
20 */
21 public WsdlRow[] rows;
22 
23 /**
24 * Create a new, emptyWsdlRow.
25 */
26 public WsdlRowSet()
27   {
28   }
29 
30 
31 } // Generated by JDBCWizard./a> 6.0    
32