1 | Path createAddfiles() {↵ | | 1 | Path createMergefiles() {↵
|
2 | if (this.addfiles == null) {↵ | | 2 | if (this.mergefiles == null) {↵
|
3 | this.addfiles = new Path(getProject());↵ | | 3 | this.mergefiles = new Path(getProject());↵
|
4 | }↵ | | 4 | }↵
|
5 | return this.addfiles.createPath();↵ | | 5 | return this.mergefiles.createPath();↵
|
6 | }↵ | | 6 | }↵
|
|
7 | /**↵ | | 7 | /**↵
|
8 | * Sets the files to be added into the output.↵ | | 8 | * Sets the files to be merged into the output.↵
|
9 | * @param addfiles a path↵ | | 9 | * @param mergefiles a path↵
|
10 | */↵ | | 10 | */↵
|
11 | public void setAddfiles(Path addfiles) {↵ | | 11 | public void setMergefiles(Path mergefiles) {↵
|
12 | if (this.addfiles == null) {↵ | | 12 | if (this.mergefiles == null) {↵
|
13 | this.addfiles = addfiles;↵ | | 13 | this.mergefiles = mergefiles;↵
|
14 | } else {↵ | | 14 | } else {↵
|
15 | this.addfiles.append(addfiles);↵ | | 15 | this.mergefiles.append(mergefiles);↵
|
16 | }↵ | | 16 | }↵
|
17 | | | 17 |
|