1
2
3
4
5
6
7
8
9 package org.jomc.model;
10
11 import java.util.ArrayList;
12 import java.util.Iterator;
13 import java.util.List;
14 import javax.annotation.Generated;
15 import javax.xml.bind.annotation.XmlAccessType;
16 import javax.xml.bind.annotation.XmlAccessorType;
17 import javax.xml.bind.annotation.XmlElement;
18 import javax.xml.bind.annotation.XmlType;
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43 @XmlAccessorType(XmlAccessType.FIELD)
44 @XmlType(name = "Implementations", namespace = "http://jomc.org/model", propOrder = {
45 "implementation",
46 "reference"
47 })
48 @Generated(value = "com.sun.tools.xjc.Driver", date = "2013-04-21T08:43:16+02:00", comments = "JAXB RI vhudson-jaxb-ri-2.1-2")
49 public class Implementations
50 extends ModelObject
51 implements Cloneable
52 {
53
54 @XmlElement(namespace = "http://jomc.org/model")
55 @Generated(value = "com.sun.tools.xjc.Driver", date = "2013-04-21T08:43:16+02:00", comments = "JAXB RI vhudson-jaxb-ri-2.1-2")
56 protected List<Implementation> implementation;
57 @XmlElement(namespace = "http://jomc.org/model")
58 @Generated(value = "com.sun.tools.xjc.Driver", date = "2013-04-21T08:43:16+02:00", comments = "JAXB RI vhudson-jaxb-ri-2.1-2")
59 protected List<ImplementationReference> reference;
60
61
62
63
64
65 public Implementations() {
66
67 super();
68 }
69
70
71
72
73
74
75
76
77
78
79 public Implementations(final Implementations o) {
80
81 super(o);
82 if (o == null) {
83 throw new NullPointerException("Cannot create a copy of 'Implementations' from 'null'.");
84 }
85
86 if (o.implementation!= null) {
87 copyImplementation(o.getImplementation(), this.getImplementation());
88 }
89
90 if (o.reference!= null) {
91 copyReference(o.getReference(), this.getReference());
92 }
93 }
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117 @Generated(value = "com.sun.tools.xjc.Driver", date = "2013-04-21T08:43:16+02:00", comments = "JAXB RI vhudson-jaxb-ri-2.1-2")
118 public List<Implementation> getImplementation() {
119 if (implementation == null) {
120 implementation = new ArrayList<Implementation>();
121 }
122 return this.implementation;
123 }
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147 @Generated(value = "com.sun.tools.xjc.Driver", date = "2013-04-21T08:43:16+02:00", comments = "JAXB RI vhudson-jaxb-ri-2.1-2")
148 public List<ImplementationReference> getReference() {
149 if (reference == null) {
150 reference = new ArrayList<ImplementationReference>();
151 }
152 return this.reference;
153 }
154
155
156
157
158
159
160
161
162
163
164
165 @SuppressWarnings("unchecked")
166 @Generated(value = "com.sun.tools.xjc.Driver", date = "2013-04-21T08:43:16+02:00", comments = "JAXB RI vhudson-jaxb-ri-2.1-2")
167 private static void copyImplementation(final List<Implementation> source, final List<Implementation> target) {
168
169 if ((source!= null)&&(!source.isEmpty())) {
170 for (final Iterator<?> it = source.iterator(); it.hasNext(); ) {
171 final Object next = it.next();
172 if (next instanceof Implementation) {
173
174 target.add(((Implementation) next).clone());
175 continue;
176 }
177
178 throw new AssertionError((("Unexpected instance '"+ next)+"' for property 'Implementation' of class 'org.jomc.model.Implementations'."));
179 }
180 }
181 }
182
183
184
185
186
187
188
189
190
191
192
193 @SuppressWarnings("unchecked")
194 @Generated(value = "com.sun.tools.xjc.Driver", date = "2013-04-21T08:43:16+02:00", comments = "JAXB RI vhudson-jaxb-ri-2.1-2")
195 private static void copyReference(final List<ImplementationReference> source, final List<ImplementationReference> target) {
196
197 if ((source!= null)&&(!source.isEmpty())) {
198 for (final Iterator<?> it = source.iterator(); it.hasNext(); ) {
199 final Object next = it.next();
200 if (next instanceof ImplementationReference) {
201
202 target.add(((ImplementationReference) next).clone());
203 continue;
204 }
205
206 throw new AssertionError((("Unexpected instance '"+ next)+"' for property 'Reference' of class 'org.jomc.model.Implementations'."));
207 }
208 }
209 }
210
211
212
213
214
215
216
217
218 @Override
219 @Generated(value = "com.sun.tools.xjc.Driver", date = "2013-04-21T08:43:16+02:00", comments = "JAXB RI vhudson-jaxb-ri-2.1-2")
220 public Implementations clone() {
221 {
222
223 final Implementations clone = ((Implementations) super.clone());
224
225 if (this.implementation!= null) {
226 clone.implementation = null;
227 copyImplementation(this.getImplementation(), clone.getImplementation());
228 }
229
230 if (this.reference!= null) {
231 clone.reference = null;
232 copyReference(this.getReference(), clone.getReference());
233 }
234 return clone;
235 }
236 }
237
238
239
240
241
242
243
244
245
246
247
248
249
250 public Implementation getImplementation( final String implementation )
251 {
252 if ( implementation == null )
253 {
254 throw new NullPointerException( "implementation" );
255 }
256
257 for ( int i = 0, s0 = this.getImplementation().size(); i < s0; i++ )
258 {
259 final Implementation current = this.getImplementation().get( i );
260
261 if ( implementation.equals( current.getIdentifier() ) )
262 {
263 return current;
264 }
265 }
266
267 return null;
268 }
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285 public Implementation getImplementation( final Class<?> implementation ) throws ModelObjectException
286 {
287 if ( implementation == null )
288 {
289 throw new NullPointerException( "implementation" );
290 }
291
292 for ( int i = 0, s0 = this.getImplementation().size(); i < s0; i++ )
293 {
294 final Implementation current = this.getImplementation().get( i );
295
296 if ( current.isClassDeclaration() && current.getClazz() != null )
297 {
298 if ( implementation.getName().equals( current.getJavaTypeName().getClassName() ) )
299 {
300 return current;
301 }
302 }
303 }
304
305 return null;
306 }
307
308
309
310
311
312
313
314
315
316
317
318
319
320 public Implementation getImplementationByName( final String name )
321 {
322 if ( name == null )
323 {
324 throw new NullPointerException( "name" );
325 }
326
327 for ( int i = 0, s0 = this.getImplementation().size(); i < s0; i++ )
328 {
329 final Implementation current = this.getImplementation().get( i );
330
331 if ( name.equals( current.getName() ) )
332 {
333 return current;
334 }
335 }
336
337 return null;
338 }
339
340
341
342
343
344
345
346
347
348
349
350
351
352 public ImplementationReference getReference( final String implementation )
353 {
354 if ( implementation == null )
355 {
356 throw new NullPointerException( "implementation" );
357 }
358
359 for ( int i = 0, s0 = this.getReference().size(); i < s0; i++ )
360 {
361 final ImplementationReference r = this.getReference().get( i );
362
363 if ( implementation.equals( r.getIdentifier() ) )
364 {
365 return r;
366 }
367 }
368
369 return null;
370 }
371
372 }