(String tableName, String columnName)
| 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; |
nothing calls this directly
no outgoing calls
no test coverage detected