View Javadoc

1   /*
2    * To change this template, choose Tools | Templates
3    * and open the template in the editor.
4    */
5   
6   package com.rc.celeritas.query;
7   
8   /**
9    *
10   * @author rahulchoudhary
11   */
12  public class Column {
13  
14      private String columnName;
15      private String columnType;
16  
17      public String getColumnName() {
18          return columnName;
19      }
20  
21      public void setColumnName(String columnName) {
22          this.columnName = columnName;
23      }
24  
25      public String getColumnType() {
26          return columnType;
27      }
28  
29      public void setColumnType(String columnType) {
30          this.columnType = columnType;
31      }
32  
33      @Override
34      public String toString(){
35          return columnName != null?columnName:"";
36      }
37  }