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 @XmlAccessorType(XmlAccessType.FIELD)
43 @XmlType(name = "Arguments", namespace = "http://jomc.org/model", propOrder = {
44 "argument"
45 })
46 @Generated(value = "com.sun.tools.xjc.Driver", date = "2013-01-03T05:01:35+01:00", comments = "JAXB RI vhudson-jaxb-ri-2.1-2")
47 public class Arguments
48 extends ModelObject
49 implements Cloneable
50 {
51
52 @XmlElement(namespace = "http://jomc.org/model")
53 @Generated(value = "com.sun.tools.xjc.Driver", date = "2013-01-03T05:01:35+01:00", comments = "JAXB RI vhudson-jaxb-ri-2.1-2")
54 protected List<Argument> argument;
55
56
57
58
59
60 public Arguments() {
61
62 super();
63 }
64
65
66
67
68
69
70
71
72
73
74 public Arguments(final Arguments o) {
75
76 super(o);
77 if (o == null) {
78 throw new NullPointerException("Cannot create a copy of 'Arguments' from 'null'.");
79 }
80
81 if (o.argument!= null) {
82 copyArgument(o.getArgument(), this.getArgument());
83 }
84 }
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108 @Generated(value = "com.sun.tools.xjc.Driver", date = "2013-01-03T05:01:35+01:00", comments = "JAXB RI vhudson-jaxb-ri-2.1-2")
109 public List<Argument> getArgument() {
110 if (argument == null) {
111 argument = new ArrayList<Argument>();
112 }
113 return this.argument;
114 }
115
116
117
118
119
120
121
122
123
124
125
126 @SuppressWarnings("unchecked")
127 @Generated(value = "com.sun.tools.xjc.Driver", date = "2013-01-03T05:01:35+01:00", comments = "JAXB RI vhudson-jaxb-ri-2.1-2")
128 private static void copyArgument(final List<Argument> source, final List<Argument> target) {
129
130 if ((source!= null)&&(!source.isEmpty())) {
131 for (final Iterator<?> it = source.iterator(); it.hasNext(); ) {
132 final Object next = it.next();
133 if (next instanceof Argument) {
134
135 target.add(((Argument) next).clone());
136 continue;
137 }
138
139 throw new AssertionError((("Unexpected instance '"+ next)+"' for property 'Argument' of class 'org.jomc.model.Arguments'."));
140 }
141 }
142 }
143
144
145
146
147
148
149
150
151 @Override
152 @Generated(value = "com.sun.tools.xjc.Driver", date = "2013-01-03T05:01:35+01:00", comments = "JAXB RI vhudson-jaxb-ri-2.1-2")
153 public Arguments clone() {
154 {
155
156 final Arguments clone = ((Arguments) super.clone());
157
158 if (this.argument!= null) {
159 clone.argument = null;
160 copyArgument(this.getArgument(), clone.getArgument());
161 }
162 return clone;
163 }
164 }
165
166
167
168
169
170
171
172
173
174
175
176
177
178 public Argument getArgument( final String name )
179 {
180 if ( name == null )
181 {
182 throw new NullPointerException( "name" );
183 }
184
185 for ( int i = 0, s0 = this.getArgument().size(); i < s0; i++ )
186 {
187 final Argument a = this.getArgument().get( i );
188
189 if ( name.equals( a.getName() ) )
190 {
191 return a;
192 }
193 }
194
195 return null;
196 }
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211 public Argument getArgument( final int index )
212 {
213 if ( index < 0 || index >= this.getArgument().size() )
214 {
215 throw new IndexOutOfBoundsException( Integer.toString( index ) );
216 }
217
218 for ( int i = 0, s0 = this.getArgument().size(); i < s0; i++ )
219 {
220 final Argument a = this.getArgument().get( i );
221
222 if ( index == a.getIndex() )
223 {
224 return a;
225 }
226 }
227
228 return null;
229 }
230
231 }