| 1 |  |  package liquibase.statement.core; | 
  | 2 |  |   | 
  | 3 |  |  import liquibase.statement.AbstractSqlStatement; | 
  | 4 |  |   | 
  | 5 |  |  public class SetColumnRemarksStatement extends AbstractSqlStatement { | 
  | 6 |  |   | 
  | 7 |  |      private String schemaName; | 
  | 8 |  |      private String tableName; | 
  | 9 |  |      private String columnName; | 
  | 10 |  |      private String remarks; | 
  | 11 |  |   | 
  | 12 | 3 |      public SetColumnRemarksStatement(String schemaName, String tableName, String columnName, String remarks) { | 
  | 13 | 3 |          this.schemaName = schemaName; | 
  | 14 | 3 |          this.tableName = tableName; | 
  | 15 | 3 |          this.columnName = columnName; | 
  | 16 | 3 |          this.remarks = remarks; | 
  | 17 | 3 |      } | 
  | 18 |  |   | 
  | 19 |  |      public String getSchemaName() { | 
  | 20 | 0 |          return schemaName; | 
  | 21 |  |      } | 
  | 22 |  |   | 
  | 23 |  |      public String getTableName() { | 
  | 24 | 0 |          return tableName; | 
  | 25 |  |      } | 
  | 26 |  |   | 
  | 27 |  |      public String getColumnName() { | 
  | 28 | 0 |          return columnName; | 
  | 29 |  |      } | 
  | 30 |  |   | 
  | 31 |  |      public String getRemarks() { | 
  | 32 | 0 |          return remarks; | 
  | 33 |  |      } | 
  | 34 |  |  } |