View Javadoc
1   package com.jsql.model.accessible.vendor.h2;
2   
3   import org.apache.commons.lang3.StringUtils;
4   
5   public class File {
6   
7       private String createTable = StringUtils.EMPTY;
8       private String read = StringUtils.EMPTY;
9   
10      public String getCreateTable() {
11          return this.createTable;
12      }
13  
14      public void setCreateTable(String createTable) {
15          this.createTable = createTable;
16      }
17  
18      public String getRead() {
19          return this.read;
20      }
21  
22      public void setRead(String read) {
23          this.read = read;
24      }
25  }