KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > webdocwf > util > loader > transformation > TransformationTargetColumn


1 /*
2  * TransformationTargetColumn.java. Created on May 25, 2004.
3  */

4 package org.webdocwf.util.loader.transformation;
5
6 /**
7  * Represents tag targetColumn in transformations tag.
8  *
9  * @author Zoran Milakovic
10  */

11
12 public class TransformationTargetColumn {
13     
14     private String JavaDoc name;
15     private String JavaDoc tableName;
16     private String JavaDoc tableID;
17     private String JavaDoc valueMode;
18     
19     private String JavaDoc type;
20
21     public TransformationTargetColumn(String JavaDoc name,
22                                                  String JavaDoc tableName,
23                                                  String JavaDoc tableID,
24                                                  String JavaDoc valueMode) {
25         this.name = name;
26         this.tableName = tableName;
27         this.tableID = tableID;
28         this.valueMode = valueMode;
29         
30     }
31
32     public String JavaDoc getName() {
33         return name;
34     }
35
36     public void setName(String JavaDoc name) {
37         this.name = name;
38     }
39
40     public String JavaDoc getTableID() {
41         return tableID;
42     }
43
44     public void setTableID(String JavaDoc tableID) {
45         this.tableID = tableID;
46     }
47
48     public String JavaDoc getTableName() {
49         return tableName;
50     }
51
52     public void setTableName(String JavaDoc tableName) {
53         this.tableName = tableName;
54     }
55
56     public String JavaDoc getValueMode() {
57         return valueMode;
58     }
59
60     public void setValueMode(String JavaDoc valueMode) {
61         this.valueMode = valueMode;
62     }
63
64     public String JavaDoc getType() {
65         return type;
66     }
67
68     public void setType(String JavaDoc type) {
69         this.type = type;
70     }
71
72 }
73
Popular Tags