Statistics
| Revision:

svn-gvsig-desktop / tags / J2ME_compat_v1_2_Build_1209 / libraries / libFMap / src / com / iver / cit / gvsig / fmap / edition / writers / dxf / DxfFieldsMapping.java @ 19509

History | View | Annotate | Download (2.11 KB)

1
package com.iver.cit.gvsig.fmap.edition.writers.dxf;
2

    
3
public class DxfFieldsMapping {
4
        private String layerField;
5
        private String colorField;
6
        private String elevationField;
7
        private String thicknessField;
8
        private String textField;
9
        private String heightText;
10
        private String rotationText;
11
        /**
12
         * @return Returns the colorField.
13
         */
14
        public String getColorField() {
15
                return colorField;
16
        }
17
        /**
18
         * @param colorField The colorField to set.
19
         */
20
        public void setColorField(String colorField) {
21
                this.colorField = colorField;
22
        }
23
        /**
24
         * @return Returns the elevationField.
25
         */
26
        public String getElevationField() {
27
                return elevationField;
28
        }
29
        /**
30
         * @param elevationField The elevationField to set.
31
         */
32
        public void setElevationField(String elevationField) {
33
                this.elevationField = elevationField;
34
        }
35
        /**
36
         * @return Returns the heightText.
37
         */
38
        public String getHeightText() {
39
                return heightText;
40
        }
41
        /**
42
         * @param heightText The heightText to set.
43
         */
44
        public void setHeightText(String heightText) {
45
                this.heightText = heightText;
46
        }
47
        /**
48
         * @return Returns the layerField.
49
         */
50
        public String getLayerField() {
51
                return layerField;
52
        }
53
        /**
54
         * @param layerField The layerField to set.
55
         */
56
        public void setLayerField(String layerField) {
57
                this.layerField = layerField;
58
        }
59
        /**
60
         * @return Returns the rotationText.
61
         */
62
        public String getRotationText() {
63
                return rotationText;
64
        }
65
        /**
66
         * @param rotationText The rotationText to set.
67
         */
68
        public void setRotationText(String rotationText) {
69
                this.rotationText = rotationText;
70
        }
71
        /**
72
         * @return Returns the textField.
73
         */
74
        public String getTextField() {
75
                return textField;
76
        }
77
        /**
78
         * @param textField The textField to set.
79
         */
80
        public void setTextField(String textField) {
81
                this.textField = textField;
82
        }
83
        /**
84
         * @return Returns the thicknessField.
85
         */
86
        public String getThicknessField() {
87
                return thicknessField;
88
        }
89
        /**
90
         * @param thicknessField The thicknessField to set.
91
         */
92
        public void setThicknessField(String thicknessField) {
93
                this.thicknessField = thicknessField;
94
        }
95
        
96

    
97
}