Code Duplication    Length = 192-192 lines in 4 locations

MetadataV1/src/edm/ssdl/TParameterType.php 1 location

@@ 11-202 (lines=192) @@
8
 *
9
 * XSD Type: TParameter
10
 */
11
class TParameterType
12
{
13
14
    /**
15
     * @property string $name
16
     */
17
    private $name = null;
18
19
    /**
20
     * @property string $type
21
     */
22
    private $type = null;
23
24
    /**
25
     * @property string $mode
26
     */
27
    private $mode = null;
28
29
    /**
30
     * @property string $maxLength
31
     */
32
    private $maxLength = null;
33
34
    /**
35
     * @property integer $precision
36
     */
37
    private $precision = null;
38
39
    /**
40
     * @property integer $scale
41
     */
42
    private $scale = null;
43
44
    /**
45
     * @property \MetadataV1\edm\ssdl\TDocumentationType $documentation
46
     */
47
    private $documentation = null;
48
49
    /**
50
     * Gets as name
51
     *
52
     * @return string
53
     */
54
    public function getName()
55
    {
56
        return $this->name;
57
    }
58
59
    /**
60
     * Sets a new name
61
     *
62
     * @param string $name
63
     * @return self
64
     */
65
    public function setName($name)
66
    {
67
        $this->name = $name;
68
        return $this;
69
    }
70
71
    /**
72
     * Gets as type
73
     *
74
     * @return string
75
     */
76
    public function getType()
77
    {
78
        return $this->type;
79
    }
80
81
    /**
82
     * Sets a new type
83
     *
84
     * @param string $type
85
     * @return self
86
     */
87
    public function setType($type)
88
    {
89
        $this->type = $type;
90
        return $this;
91
    }
92
93
    /**
94
     * Gets as mode
95
     *
96
     * @return string
97
     */
98
    public function getMode()
99
    {
100
        return $this->mode;
101
    }
102
103
    /**
104
     * Sets a new mode
105
     *
106
     * @param string $mode
107
     * @return self
108
     */
109
    public function setMode($mode)
110
    {
111
        $this->mode = $mode;
112
        return $this;
113
    }
114
115
    /**
116
     * Gets as maxLength
117
     *
118
     * @return string
119
     */
120
    public function getMaxLength()
121
    {
122
        return $this->maxLength;
123
    }
124
125
    /**
126
     * Sets a new maxLength
127
     *
128
     * @param string $maxLength
129
     * @return self
130
     */
131
    public function setMaxLength($maxLength)
132
    {
133
        $this->maxLength = $maxLength;
134
        return $this;
135
    }
136
137
    /**
138
     * Gets as precision
139
     *
140
     * @return integer
141
     */
142
    public function getPrecision()
143
    {
144
        return $this->precision;
145
    }
146
147
    /**
148
     * Sets a new precision
149
     *
150
     * @param integer $precision
151
     * @return self
152
     */
153
    public function setPrecision($precision)
154
    {
155
        $this->precision = $precision;
156
        return $this;
157
    }
158
159
    /**
160
     * Gets as scale
161
     *
162
     * @return integer
163
     */
164
    public function getScale()
165
    {
166
        return $this->scale;
167
    }
168
169
    /**
170
     * Sets a new scale
171
     *
172
     * @param integer $scale
173
     * @return self
174
     */
175
    public function setScale($scale)
176
    {
177
        $this->scale = $scale;
178
        return $this;
179
    }
180
181
    /**
182
     * Gets as documentation
183
     *
184
     * @return \MetadataV1\edm\ssdl\TDocumentationType
185
     */
186
    public function getDocumentation()
187
    {
188
        return $this->documentation;
189
    }
190
191
    /**
192
     * Sets a new documentation
193
     *
194
     * @param \MetadataV1\edm\ssdl\TDocumentationType $documentation
195
     * @return self
196
     */
197
    public function setDocumentation(\MetadataV1\edm\ssdl\TDocumentationType $documentation)
198
    {
199
        $this->documentation = $documentation;
200
        return $this;
201
    }
202
}
203

MetadataV1/src/edm/TFunctionImportParameterType.php 1 location

@@ 11-202 (lines=192) @@
8
 *
9
 * XSD Type: TFunctionImportParameter
10
 */
11
class TFunctionImportParameterType
12
{
13
14
    /**
15
     * @property string $name
16
     */
17
    private $name = null;
18
19
    /**
20
     * @property string $type
21
     */
22
    private $type = null;
23
24
    /**
25
     * @property string $mode
26
     */
27
    private $mode = null;
28
29
    /**
30
     * @property string $maxLength
31
     */
32
    private $maxLength = null;
33
34
    /**
35
     * @property integer $precision
36
     */
37
    private $precision = null;
38
39
    /**
40
     * @property integer $scale
41
     */
42
    private $scale = null;
43
44
    /**
45
     * @property \MetadataV1\edm\TDocumentationType $documentation
46
     */
47
    private $documentation = null;
48
49
    /**
50
     * Gets as name
51
     *
52
     * @return string
53
     */
54
    public function getName()
55
    {
56
        return $this->name;
57
    }
58
59
    /**
60
     * Sets a new name
61
     *
62
     * @param string $name
63
     * @return self
64
     */
65
    public function setName($name)
66
    {
67
        $this->name = $name;
68
        return $this;
69
    }
70
71
    /**
72
     * Gets as type
73
     *
74
     * @return string
75
     */
76
    public function getType()
77
    {
78
        return $this->type;
79
    }
80
81
    /**
82
     * Sets a new type
83
     *
84
     * @param string $type
85
     * @return self
86
     */
87
    public function setType($type)
88
    {
89
        $this->type = $type;
90
        return $this;
91
    }
92
93
    /**
94
     * Gets as mode
95
     *
96
     * @return string
97
     */
98
    public function getMode()
99
    {
100
        return $this->mode;
101
    }
102
103
    /**
104
     * Sets a new mode
105
     *
106
     * @param string $mode
107
     * @return self
108
     */
109
    public function setMode($mode)
110
    {
111
        $this->mode = $mode;
112
        return $this;
113
    }
114
115
    /**
116
     * Gets as maxLength
117
     *
118
     * @return string
119
     */
120
    public function getMaxLength()
121
    {
122
        return $this->maxLength;
123
    }
124
125
    /**
126
     * Sets a new maxLength
127
     *
128
     * @param string $maxLength
129
     * @return self
130
     */
131
    public function setMaxLength($maxLength)
132
    {
133
        $this->maxLength = $maxLength;
134
        return $this;
135
    }
136
137
    /**
138
     * Gets as precision
139
     *
140
     * @return integer
141
     */
142
    public function getPrecision()
143
    {
144
        return $this->precision;
145
    }
146
147
    /**
148
     * Sets a new precision
149
     *
150
     * @param integer $precision
151
     * @return self
152
     */
153
    public function setPrecision($precision)
154
    {
155
        $this->precision = $precision;
156
        return $this;
157
    }
158
159
    /**
160
     * Gets as scale
161
     *
162
     * @return integer
163
     */
164
    public function getScale()
165
    {
166
        return $this->scale;
167
    }
168
169
    /**
170
     * Sets a new scale
171
     *
172
     * @param integer $scale
173
     * @return self
174
     */
175
    public function setScale($scale)
176
    {
177
        $this->scale = $scale;
178
        return $this;
179
    }
180
181
    /**
182
     * Gets as documentation
183
     *
184
     * @return \MetadataV1\edm\TDocumentationType
185
     */
186
    public function getDocumentation()
187
    {
188
        return $this->documentation;
189
    }
190
191
    /**
192
     * Sets a new documentation
193
     *
194
     * @param \MetadataV1\edm\TDocumentationType $documentation
195
     * @return self
196
     */
197
    public function setDocumentation(\MetadataV1\edm\TDocumentationType $documentation)
198
    {
199
        $this->documentation = $documentation;
200
        return $this;
201
    }
202
}
203

MetadataV2/src/edm/ssdl/TParameterType.php 1 location

@@ 11-202 (lines=192) @@
8
 *
9
 * XSD Type: TParameter
10
 */
11
class TParameterType
12
{
13
14
    /**
15
     * @property string $name
16
     */
17
    private $name = null;
18
19
    /**
20
     * @property string $type
21
     */
22
    private $type = null;
23
24
    /**
25
     * @property string $mode
26
     */
27
    private $mode = null;
28
29
    /**
30
     * @property string $maxLength
31
     */
32
    private $maxLength = null;
33
34
    /**
35
     * @property integer $precision
36
     */
37
    private $precision = null;
38
39
    /**
40
     * @property integer $scale
41
     */
42
    private $scale = null;
43
44
    /**
45
     * @property \MetadataV2\edm\ssdl\TDocumentationType $documentation
46
     */
47
    private $documentation = null;
48
49
    /**
50
     * Gets as name
51
     *
52
     * @return string
53
     */
54
    public function getName()
55
    {
56
        return $this->name;
57
    }
58
59
    /**
60
     * Sets a new name
61
     *
62
     * @param string $name
63
     * @return self
64
     */
65
    public function setName($name)
66
    {
67
        $this->name = $name;
68
        return $this;
69
    }
70
71
    /**
72
     * Gets as type
73
     *
74
     * @return string
75
     */
76
    public function getType()
77
    {
78
        return $this->type;
79
    }
80
81
    /**
82
     * Sets a new type
83
     *
84
     * @param string $type
85
     * @return self
86
     */
87
    public function setType($type)
88
    {
89
        $this->type = $type;
90
        return $this;
91
    }
92
93
    /**
94
     * Gets as mode
95
     *
96
     * @return string
97
     */
98
    public function getMode()
99
    {
100
        return $this->mode;
101
    }
102
103
    /**
104
     * Sets a new mode
105
     *
106
     * @param string $mode
107
     * @return self
108
     */
109
    public function setMode($mode)
110
    {
111
        $this->mode = $mode;
112
        return $this;
113
    }
114
115
    /**
116
     * Gets as maxLength
117
     *
118
     * @return string
119
     */
120
    public function getMaxLength()
121
    {
122
        return $this->maxLength;
123
    }
124
125
    /**
126
     * Sets a new maxLength
127
     *
128
     * @param string $maxLength
129
     * @return self
130
     */
131
    public function setMaxLength($maxLength)
132
    {
133
        $this->maxLength = $maxLength;
134
        return $this;
135
    }
136
137
    /**
138
     * Gets as precision
139
     *
140
     * @return integer
141
     */
142
    public function getPrecision()
143
    {
144
        return $this->precision;
145
    }
146
147
    /**
148
     * Sets a new precision
149
     *
150
     * @param integer $precision
151
     * @return self
152
     */
153
    public function setPrecision($precision)
154
    {
155
        $this->precision = $precision;
156
        return $this;
157
    }
158
159
    /**
160
     * Gets as scale
161
     *
162
     * @return integer
163
     */
164
    public function getScale()
165
    {
166
        return $this->scale;
167
    }
168
169
    /**
170
     * Sets a new scale
171
     *
172
     * @param integer $scale
173
     * @return self
174
     */
175
    public function setScale($scale)
176
    {
177
        $this->scale = $scale;
178
        return $this;
179
    }
180
181
    /**
182
     * Gets as documentation
183
     *
184
     * @return \MetadataV2\edm\ssdl\TDocumentationType
185
     */
186
    public function getDocumentation()
187
    {
188
        return $this->documentation;
189
    }
190
191
    /**
192
     * Sets a new documentation
193
     *
194
     * @param \MetadataV2\edm\ssdl\TDocumentationType $documentation
195
     * @return self
196
     */
197
    public function setDocumentation(\MetadataV2\edm\ssdl\TDocumentationType $documentation)
198
    {
199
        $this->documentation = $documentation;
200
        return $this;
201
    }
202
}
203

MetadataV2/src/edm/TFunctionImportParameterType.php 1 location

@@ 11-202 (lines=192) @@
8
 *
9
 * XSD Type: TFunctionImportParameter
10
 */
11
class TFunctionImportParameterType
12
{
13
14
    /**
15
     * @property string $name
16
     */
17
    private $name = null;
18
19
    /**
20
     * @property string $type
21
     */
22
    private $type = null;
23
24
    /**
25
     * @property string $mode
26
     */
27
    private $mode = null;
28
29
    /**
30
     * @property string $maxLength
31
     */
32
    private $maxLength = null;
33
34
    /**
35
     * @property integer $precision
36
     */
37
    private $precision = null;
38
39
    /**
40
     * @property integer $scale
41
     */
42
    private $scale = null;
43
44
    /**
45
     * @property \MetadataV2\edm\TDocumentationType $documentation
46
     */
47
    private $documentation = null;
48
49
    /**
50
     * Gets as name
51
     *
52
     * @return string
53
     */
54
    public function getName()
55
    {
56
        return $this->name;
57
    }
58
59
    /**
60
     * Sets a new name
61
     *
62
     * @param string $name
63
     * @return self
64
     */
65
    public function setName($name)
66
    {
67
        $this->name = $name;
68
        return $this;
69
    }
70
71
    /**
72
     * Gets as type
73
     *
74
     * @return string
75
     */
76
    public function getType()
77
    {
78
        return $this->type;
79
    }
80
81
    /**
82
     * Sets a new type
83
     *
84
     * @param string $type
85
     * @return self
86
     */
87
    public function setType($type)
88
    {
89
        $this->type = $type;
90
        return $this;
91
    }
92
93
    /**
94
     * Gets as mode
95
     *
96
     * @return string
97
     */
98
    public function getMode()
99
    {
100
        return $this->mode;
101
    }
102
103
    /**
104
     * Sets a new mode
105
     *
106
     * @param string $mode
107
     * @return self
108
     */
109
    public function setMode($mode)
110
    {
111
        $this->mode = $mode;
112
        return $this;
113
    }
114
115
    /**
116
     * Gets as maxLength
117
     *
118
     * @return string
119
     */
120
    public function getMaxLength()
121
    {
122
        return $this->maxLength;
123
    }
124
125
    /**
126
     * Sets a new maxLength
127
     *
128
     * @param string $maxLength
129
     * @return self
130
     */
131
    public function setMaxLength($maxLength)
132
    {
133
        $this->maxLength = $maxLength;
134
        return $this;
135
    }
136
137
    /**
138
     * Gets as precision
139
     *
140
     * @return integer
141
     */
142
    public function getPrecision()
143
    {
144
        return $this->precision;
145
    }
146
147
    /**
148
     * Sets a new precision
149
     *
150
     * @param integer $precision
151
     * @return self
152
     */
153
    public function setPrecision($precision)
154
    {
155
        $this->precision = $precision;
156
        return $this;
157
    }
158
159
    /**
160
     * Gets as scale
161
     *
162
     * @return integer
163
     */
164
    public function getScale()
165
    {
166
        return $this->scale;
167
    }
168
169
    /**
170
     * Sets a new scale
171
     *
172
     * @param integer $scale
173
     * @return self
174
     */
175
    public function setScale($scale)
176
    {
177
        $this->scale = $scale;
178
        return $this;
179
    }
180
181
    /**
182
     * Gets as documentation
183
     *
184
     * @return \MetadataV2\edm\TDocumentationType
185
     */
186
    public function getDocumentation()
187
    {
188
        return $this->documentation;
189
    }
190
191
    /**
192
     * Sets a new documentation
193
     *
194
     * @param \MetadataV2\edm\TDocumentationType $documentation
195
     * @return self
196
     */
197
    public function setDocumentation(\MetadataV2\edm\TDocumentationType $documentation)
198
    {
199
        $this->documentation = $documentation;
200
        return $this;
201
    }
202
}
203