| 1 | package com.sql.parse.model; |
| 2 | |
| 3 | public class Column { |
| 4 | private String tableName; |
| 5 | |
| 6 | private String columnName; |
| 7 | |
| 8 | public Column(String tableName, String columnName) { |
| 9 | this.tableName = tableName; |
| 10 | this.columnName = columnName; |
| 11 | } |
| 12 | |
| 13 | public String getTableName() { |
| 14 | return tableName; |
| 15 | } |
| 16 | |
| 17 | public void setTableName(String tableName) { |
| 18 | this.tableName = tableName; |
| 19 | } |
| 20 | |
| 21 | public String getColumnName() { |
| 22 | return columnName; |
| 23 | } |
| 24 | |
| 25 | public void setColumnName(String columnName) { |
| 26 | this.columnName = columnName; |
| 27 | } |
| 28 | } |
nothing calls this directly
no outgoing calls
no test coverage detected