01: /*
02: * TransformationTargetColumn.java. Created on May 25, 2004.
03: */
04: package org.webdocwf.util.loader.transformation;
05:
06: /**
07: * Represents tag targetColumn in transformations tag.
08: *
09: * @author Zoran Milakovic
10: */
11:
12: public class TransformationTargetColumn {
13:
14: private String name;
15: private String tableName;
16: private String tableID;
17: private String valueMode;
18:
19: private String type;
20:
21: public TransformationTargetColumn(String name, String tableName,
22: String tableID, String valueMode) {
23: this .name = name;
24: this .tableName = tableName;
25: this .tableID = tableID;
26: this .valueMode = valueMode;
27:
28: }
29:
30: public String getName() {
31: return name;
32: }
33:
34: public void setName(String name) {
35: this .name = name;
36: }
37:
38: public String getTableID() {
39: return tableID;
40: }
41:
42: public void setTableID(String tableID) {
43: this .tableID = tableID;
44: }
45:
46: public String getTableName() {
47: return tableName;
48: }
49:
50: public void setTableName(String tableName) {
51: this .tableName = tableName;
52: }
53:
54: public String getValueMode() {
55: return valueMode;
56: }
57:
58: public void setValueMode(String valueMode) {
59: this .valueMode = valueMode;
60: }
61:
62: public String getType() {
63: return type;
64: }
65:
66: public void setType(String type) {
67: this.type = type;
68: }
69:
70: }
|