MCPcopy Create free account
hub / github.com/Nemo1870/sql-parse / Column

Class Column

src/main/java/com/sql/parse/model/Column.java:3–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1package com.sql.parse.model;
2
3public 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected