1 |
|
package org.apache.torque.engine.database.model; |
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
|
17 |
|
|
18 |
|
|
19 |
|
|
20 |
|
|
21 |
|
|
22 |
|
import org.apache.commons.lang.StringUtils; |
23 |
|
import org.apache.torque.engine.platform.Platform; |
24 |
|
import org.xml.sax.Attributes; |
25 |
|
|
26 |
|
|
27 |
|
|
28 |
|
|
29 |
|
@author |
30 |
|
@version |
31 |
|
|
|
|
| 0% |
Uncovered Elements: 101 (101) |
Complexity: 35 |
Complexity Density: 0.56 |
|
32 |
|
public class Domain { |
33 |
|
private String name; |
34 |
|
private String description; |
35 |
|
private String size; |
36 |
|
private String scale; |
37 |
|
|
38 |
|
private SchemaType torqueType; |
39 |
|
private String sqlType; |
40 |
|
private String defaultValue; |
41 |
|
|
42 |
|
|
43 |
|
|
44 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
45 |
0
|
public Domain() {... |
46 |
0
|
this.name = null; |
47 |
|
} |
48 |
|
|
49 |
|
|
50 |
|
|
51 |
|
|
52 |
|
@param |
53 |
|
|
54 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
55 |
0
|
public Domain(String name) {... |
56 |
0
|
this.name = name; |
57 |
|
} |
58 |
|
|
59 |
|
|
60 |
|
|
61 |
|
|
|
|
| 0% |
Uncovered Elements: 3 (3) |
Complexity: 1 |
Complexity Density: 0.33 |
|
62 |
0
|
public Domain(SchemaType type) {... |
63 |
0
|
this.name = null; |
64 |
0
|
this.torqueType = type; |
65 |
0
|
this.sqlType = type.getName(); |
66 |
|
} |
67 |
|
|
68 |
|
|
69 |
|
|
70 |
|
|
|
|
| 0% |
Uncovered Elements: 3 (3) |
Complexity: 1 |
Complexity Density: 0.33 |
|
71 |
0
|
public Domain(SchemaType type, String sqlType) {... |
72 |
0
|
this.name = null; |
73 |
0
|
this.torqueType = type; |
74 |
0
|
this.sqlType = sqlType; |
75 |
|
} |
76 |
|
|
77 |
|
|
78 |
|
|
79 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 1 |
Complexity Density: 0.2 |
|
80 |
0
|
public Domain(SchemaType type, String sqlType, String size, String scale) {... |
81 |
0
|
this.name = null; |
82 |
0
|
this.torqueType = type; |
83 |
0
|
this.sqlType = sqlType; |
84 |
0
|
this.size = size; |
85 |
0
|
this.scale = scale; |
86 |
|
} |
87 |
|
|
88 |
|
|
89 |
|
|
90 |
|
|
|
|
| 0% |
Uncovered Elements: 4 (4) |
Complexity: 1 |
Complexity Density: 0.25 |
|
91 |
0
|
public Domain(SchemaType type, String sqlType, String size) {... |
92 |
0
|
this.name = null; |
93 |
0
|
this.torqueType = type; |
94 |
0
|
this.sqlType = sqlType; |
95 |
0
|
this.size = size; |
96 |
|
} |
97 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
98 |
0
|
public Domain(Domain domain) {... |
99 |
0
|
copy(domain); |
100 |
|
} |
101 |
|
|
|
|
| 0% |
Uncovered Elements: 7 (7) |
Complexity: 1 |
Complexity Density: 0.14 |
|
102 |
0
|
public void copy(Domain domain) {... |
103 |
0
|
this.defaultValue = domain.getDefaultValue(); |
104 |
0
|
this.description = domain.getDescription(); |
105 |
0
|
this.name = domain.getName(); |
106 |
0
|
this.scale = domain.getScale(); |
107 |
0
|
this.size = domain.getSize(); |
108 |
0
|
this.sqlType = domain.getSqlType(); |
109 |
0
|
this.torqueType = domain.getType(); |
110 |
|
} |
111 |
|
|
112 |
|
|
113 |
|
|
114 |
|
|
|
|
| 0% |
Uncovered Elements: 7 (7) |
Complexity: 1 |
Complexity Density: 0.14 |
|
115 |
0
|
public void loadFromXML(Attributes attrib, Platform platform) {... |
116 |
0
|
SchemaType schemaType = SchemaType.getEnum(attrib.getValue("type")); |
117 |
0
|
copy(platform.getDomainForSchemaType(schemaType)); |
118 |
|
|
119 |
0
|
name = attrib.getValue("name"); |
120 |
|
|
121 |
0
|
defaultValue = attrib.getValue("default"); |
122 |
0
|
size = attrib.getValue("size"); |
123 |
0
|
scale = attrib.getValue("scale"); |
124 |
|
|
125 |
0
|
description = attrib.getValue("description"); |
126 |
|
} |
127 |
|
|
128 |
|
|
129 |
|
@return |
130 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
131 |
0
|
public String getDescription() {... |
132 |
0
|
return description; |
133 |
|
} |
134 |
|
|
135 |
|
|
136 |
|
@param |
137 |
|
|
138 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
139 |
0
|
public void setDescription(String description) {... |
140 |
0
|
this.description = description; |
141 |
|
} |
142 |
|
|
143 |
|
|
144 |
|
@return |
145 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
146 |
0
|
public String getName() {... |
147 |
0
|
return name; |
148 |
|
} |
149 |
|
|
150 |
|
|
151 |
|
@param |
152 |
|
|
153 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
154 |
0
|
public void setName(String name) {... |
155 |
0
|
this.name = name; |
156 |
|
} |
157 |
|
|
158 |
|
|
159 |
|
@return |
160 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
161 |
0
|
public String getScale() {... |
162 |
0
|
return scale; |
163 |
|
} |
164 |
|
|
165 |
|
|
166 |
|
@param |
167 |
|
|
168 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
169 |
0
|
public void setScale(String scale) {... |
170 |
0
|
this.scale = scale; |
171 |
|
} |
172 |
|
|
173 |
|
|
174 |
|
|
175 |
|
|
176 |
|
@param |
177 |
|
|
178 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
179 |
0
|
public void replaceScale(String value) {... |
180 |
0
|
this.scale = StringUtils.defaultString(value, getScale()); |
181 |
|
} |
182 |
|
|
183 |
|
|
184 |
|
@return |
185 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
186 |
0
|
public String getSize() {... |
187 |
0
|
return size; |
188 |
|
} |
189 |
|
|
190 |
|
|
191 |
|
@param |
192 |
|
|
193 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
194 |
0
|
public void setSize(String size) {... |
195 |
0
|
this.size = size; |
196 |
|
} |
197 |
|
|
198 |
|
|
199 |
|
|
200 |
|
|
201 |
|
@param |
202 |
|
|
203 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
204 |
0
|
public void replaceSize(String value) {... |
205 |
0
|
this.size = StringUtils.defaultString(value, getSize()); |
206 |
|
} |
207 |
|
|
208 |
|
|
209 |
|
@return |
210 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
211 |
0
|
public SchemaType getType() {... |
212 |
0
|
return torqueType; |
213 |
|
} |
214 |
|
|
215 |
|
|
216 |
|
@param |
217 |
|
|
218 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
219 |
0
|
public void setType(SchemaType torqueType) {... |
220 |
0
|
this.torqueType = torqueType; |
221 |
|
} |
222 |
|
|
223 |
|
|
224 |
|
@param |
225 |
|
|
226 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
227 |
0
|
public void setType(String torqueType) {... |
228 |
0
|
this.torqueType = SchemaType.getEnum(torqueType); |
229 |
|
} |
230 |
|
|
231 |
|
|
232 |
|
|
233 |
|
|
234 |
|
@param |
235 |
|
|
236 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
237 |
0
|
public void replaceType(String value) {... |
238 |
0
|
this.torqueType = SchemaType.getEnum(StringUtils.defaultString(value, getType().getName())); |
239 |
|
} |
240 |
|
|
241 |
|
|
242 |
|
@return |
243 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
244 |
0
|
public String getDefaultValue() {... |
245 |
0
|
return defaultValue; |
246 |
|
} |
247 |
|
|
248 |
|
|
249 |
|
|
250 |
|
|
251 |
|
@deprecated |
252 |
|
|
|
|
| 0% |
Uncovered Elements: 11 (11) |
Complexity: 3 |
Complexity Density: 0.43 |
|
253 |
0
|
public String getDefaultSetting() {... |
254 |
0
|
StringBuffer dflt = new StringBuffer(0); |
255 |
0
|
if (getDefaultValue() != null) { |
256 |
0
|
dflt.append("default "); |
257 |
0
|
if (TypeMap.isTextType(getType())) { |
258 |
|
|
259 |
0
|
dflt.append('\'').append(getDefaultValue()).append('\''); |
260 |
|
} else { |
261 |
0
|
dflt.append(getDefaultValue()); |
262 |
|
} |
263 |
|
} |
264 |
0
|
return dflt.toString(); |
265 |
|
} |
266 |
|
|
267 |
|
|
268 |
|
@param |
269 |
|
|
270 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
271 |
0
|
public void setDefaultValue(String defaultValue) {... |
272 |
0
|
this.defaultValue = defaultValue; |
273 |
|
} |
274 |
|
|
275 |
|
|
276 |
|
|
277 |
|
|
278 |
|
@param |
279 |
|
|
280 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
281 |
0
|
public void replaceDefaultValue(String value) {... |
282 |
0
|
this.defaultValue = StringUtils.defaultString(value, getDefaultValue()); |
283 |
|
} |
284 |
|
|
285 |
|
|
286 |
|
@return |
287 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
288 |
0
|
public String getSqlType() {... |
289 |
0
|
return sqlType; |
290 |
|
} |
291 |
|
|
292 |
|
|
293 |
|
@param |
294 |
|
|
295 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
296 |
0
|
public void setSqlType(String sqlType) {... |
297 |
0
|
this.sqlType = sqlType; |
298 |
|
} |
299 |
|
|
300 |
|
|
301 |
|
|
302 |
|
|
303 |
|
@return |
304 |
|
|
|
|
| 0% |
Uncovered Elements: 9 (9) |
Complexity: 4 |
Complexity Density: 0.8 |
|
305 |
0
|
public String printSize() {... |
306 |
0
|
if (size != null && scale != null) { |
307 |
0
|
return '(' + size + ',' + scale + ')'; |
308 |
0
|
} else if (size != null) { |
309 |
0
|
return '(' + size + ')'; |
310 |
|
} else { |
311 |
0
|
return ""; |
312 |
|
} |
313 |
|
} |
314 |
|
|
315 |
|
} |