View Javadoc
1   package com.jsql.model.accessible.vendor.hsqldb;
2   
3   import org.apache.commons.lang3.StringUtils;
4   
5   public class Read {
6   
7       private String createTable = StringUtils.EMPTY;
8       private String result = StringUtils.EMPTY;
9       private String performImport = StringUtils.EMPTY;
10  
11      public String getCreateTable() {
12          return this.createTable;
13      }
14  
15      public void setCreateTable(String createTable) {
16          this.createTable = createTable;
17      }
18  
19      public String getResult() {
20          return this.result;
21      }
22  
23      public void setResult(String result) {
24          this.result = result;
25      }
26  
27      public String getPerformImport() {
28          return this.performImport;
29      }
30  
31      public void setPerformImport(String performImport) {
32          this.performImport = performImport;
33      }
34  }