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