1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
|
package net.sf.antcontrib.logic;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.util.Hashtable;
import java.util.Vector;
import org.apache.tools.ant.AntClassLoader;
import org.apache.tools.ant.BuildException;
import org.apache.tools.ant.BuildListener;
import org.apache.tools.ant.Executor;
import org.apache.tools.ant.Project;
import org.apache.tools.ant.Target;
import org.apache.tools.ant.Task;
import org.apache.tools.ant.input.InputHandler;
import org.apache.tools.ant.types.FilterSet;
import org.apache.tools.ant.types.Path;
public class ProjectDelegate
extends Project {
private Project delegate;
private Project subproject;
public ProjectDelegate(Project delegate) {
super();
this.delegate = delegate;
}
public Project getSubproject() {
return subproject;
}
public void addBuildListener(BuildListener arg0) {
delegate.addBuildListener(arg0);
}
public void addDataTypeDefinition(String arg0, Class arg1) {
delegate.addDataTypeDefinition(arg0, arg1);
}
public void addFilter(String arg0, String arg1) {
delegate.addFilter(arg0, arg1);
}
public void addOrReplaceTarget(String arg0, Target arg1) {
delegate.addOrReplaceTarget(arg0, arg1);
}
public void addOrReplaceTarget(Target arg0) {
delegate.addOrReplaceTarget(arg0);
}
public void addReference(String arg0, Object arg1) {
delegate.addReference(arg0, arg1);
}
public void addTarget(String arg0, Target arg1) throws BuildException {
delegate.addTarget(arg0, arg1);
}
public void addTarget(Target arg0) throws BuildException {
delegate.addTarget(arg0);
}
public void addTaskDefinition(String arg0, Class arg1) throws BuildException {
delegate.addTaskDefinition(arg0, arg1);
}
public void checkTaskClass(Class arg0) throws BuildException {
delegate.checkTaskClass(arg0);
}
public void copyFile(File arg0, File arg1, boolean arg2, boolean arg3, boolean arg4) throws IOException {
delegate.copyFile(arg0, arg1, arg2, arg3, arg4);
}
public void copyFile(File arg0, File arg1, boolean arg2, boolean arg3) throws IOException {
delegate.copyFile(arg0, arg1, arg2, arg3);
}
public void copyFile(File arg0, File arg1, boolean arg2) throws IOException {
delegate.copyFile(arg0, arg1, arg2);
}
public void copyFile(File arg0, File arg1) throws IOException {
delegate.copyFile(arg0, arg1);
}
public void copyFile(String arg0, String arg1, boolean arg2, boolean arg3, boolean arg4) throws IOException {
delegate.copyFile(arg0, arg1, arg2, arg3, arg4);
}
public void copyFile(String arg0, String arg1, boolean arg2, boolean arg3) throws IOException {
delegate.copyFile(arg0, arg1, arg2, arg3);
}
public void copyFile(String arg0, String arg1, boolean arg2) throws IOException {
delegate.copyFile(arg0, arg1, arg2);
}
public void copyFile(String arg0, String arg1) throws IOException {
delegate.copyFile(arg0, arg1);
}
public void copyInheritedProperties(Project arg0) {
delegate.copyInheritedProperties(arg0);
}
public void copyUserProperties(Project arg0) {
delegate.copyUserProperties(arg0);
}
public AntClassLoader createClassLoader(Path arg0) {
return delegate.createClassLoader(arg0);
}
public Object createDataType(String arg0) throws BuildException {
return delegate.createDataType(arg0);
}
public Task createTask(String arg0) throws BuildException {
return delegate.createTask(arg0);
}
public int defaultInput(byte[] arg0, int arg1, int arg2) throws IOException {
return delegate.defaultInput(arg0, arg1, arg2);
}
public void demuxFlush(String arg0, boolean arg1) {
delegate.demuxFlush(arg0, arg1);
}
public int demuxInput(byte[] arg0, int arg1, int arg2) throws IOException {
return delegate.demuxInput(arg0, arg1, arg2);
}
public void demuxOutput(String arg0, boolean arg1) {
delegate.demuxOutput(arg0, arg1);
}
public boolean equals(Object arg0) {
return delegate.equals(arg0);
}
public void executeSortedTargets(Vector arg0) throws BuildException {
delegate.executeSortedTargets(arg0);
}
public void executeTarget(String arg0) throws BuildException {
delegate.executeTarget(arg0);
}
public void executeTargets(Vector arg0) throws BuildException {
delegate.executeTargets(arg0);
}
public void fireBuildFinished(Throwable arg0) {
delegate.fireBuildFinished(arg0);
}
public void fireBuildStarted() {
delegate.fireBuildStarted();
}
public void fireSubBuildFinished(Throwable arg0) {
delegate.fireSubBuildFinished(arg0);
}
public void fireSubBuildStarted() {
delegate.fireSubBuildStarted();
}
public File getBaseDir() {
return delegate.getBaseDir();
}
public Vector getBuildListeners() {
return delegate.getBuildListeners();
}
public ClassLoader getCoreLoader() {
return delegate.getCoreLoader();
}
public Hashtable getDataTypeDefinitions() {
return delegate.getDataTypeDefinitions();
}
public InputStream getDefaultInputStream() {
return delegate.getDefaultInputStream();
}
public String getDefaultTarget() {
return delegate.getDefaultTarget();
}
public String getDescription() {
return delegate.getDescription();
}
public String getElementName(Object arg0) {
return delegate.getElementName(arg0);
}
public Executor getExecutor() {
return delegate.getExecutor();
}
public Hashtable getFilters() {
return delegate.getFilters();
}
public FilterSet getGlobalFilterSet() {
return delegate.getGlobalFilterSet();
}
public InputHandler getInputHandler() {
return delegate.getInputHandler();
}
public String getName() {
return delegate.getName();
}
public Hashtable getProperties() {
return delegate.getProperties();
}
public String getProperty(String arg0) {
return delegate.getProperty(arg0);
}
public Object getReference(String arg0) {
return delegate.getReference(arg0);
}
public Hashtable getReferences() {
return delegate.getReferences();
}
public Hashtable getTargets() {
return delegate.getTargets();
}
public Hashtable getTaskDefinitions() {
return delegate.getTaskDefinitions();
}
public Task getThreadTask(Thread arg0) {
return delegate.getThreadTask(arg0);
}
public Hashtable getUserProperties() {
return delegate.getUserProperties();
}
public String getUserProperty(String arg0) {
return delegate.getUserProperty(arg0);
}
public int hashCode() {
return delegate.hashCode();
}
public void init() throws BuildException {
delegate.init();
}
public void initSubProject(Project arg0) {
delegate.initSubProject(arg0);
this.subproject = arg0;
}
public boolean isKeepGoingMode() {
return delegate.isKeepGoingMode();
}
public void log(String arg0, int arg1) {
delegate.log(arg0, arg1);
}
public void log(String arg0) {
delegate.log(arg0);
}
public void log(Target arg0, String arg1, int arg2) {
delegate.log(arg0, arg1, arg2);
}
public void log(Task arg0, String arg1, int arg2) {
delegate.log(arg0, arg1, arg2);
}
public void registerThreadTask(Thread arg0, Task arg1) {
delegate.registerThreadTask(arg0, arg1);
}
public void removeBuildListener(BuildListener arg0) {
delegate.removeBuildListener(arg0);
}
public String replaceProperties(String arg0) throws BuildException {
return delegate.replaceProperties(arg0);
}
public File resolveFile(String arg0, File arg1) {
return delegate.resolveFile(arg0, arg1);
}
public File resolveFile(String arg0) {
return delegate.resolveFile(arg0);
}
public void setBaseDir(File arg0) throws BuildException {
delegate.setBaseDir(arg0);
}
public void setBasedir(String arg0) throws BuildException {
delegate.setBasedir(arg0);
}
public void setCoreLoader(ClassLoader arg0) {
delegate.setCoreLoader(arg0);
}
public void setDefault(String arg0) {
delegate.setDefault(arg0);
}
public void setDefaultInputStream(InputStream arg0) {
delegate.setDefaultInputStream(arg0);
}
public void setDefaultTarget(String arg0) {
delegate.setDefaultTarget(arg0);
}
public void setDescription(String arg0) {
delegate.setDescription(arg0);
}
public void setExecutor(Executor arg0) {
delegate.setExecutor(arg0);
}
public void setFileLastModified(File arg0, long arg1) throws BuildException {
delegate.setFileLastModified(arg0, arg1);
}
public void setInheritedProperty(String arg0, String arg1) {
delegate.setInheritedProperty(arg0, arg1);
}
public void setInputHandler(InputHandler arg0) {
delegate.setInputHandler(arg0);
}
public void setJavaVersionProperty() throws BuildException {
delegate.setJavaVersionProperty();
}
public void setKeepGoingMode(boolean arg0) {
delegate.setKeepGoingMode(arg0);
}
public void setName(String arg0) {
delegate.setName(arg0);
}
public void setNewProperty(String arg0, String arg1) {
delegate.setNewProperty(arg0, arg1);
}
public void setProperty(String arg0, String arg1) {
delegate.setProperty(arg0, arg1);
}
public void setSystemProperties() {
delegate.setSystemProperties();
}
public void setUserProperty(String arg0, String arg1) {
delegate.setUserProperty(arg0, arg1);
}
public String toString() {
return delegate.toString();
}
}
|