1 | void setClasspath(Path classpath) {↵ | | 1 | void setFilepath(Path filepath) {↵
|
2 | createClasspath().append(classpath);↵ | | 2 | createFilepath().append(filepath);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * Classpath to be used when searching for classes and resources.↵ | | 5 | * Path to search for file resources.↵
|
6 | *↵ | | 6 | *↵
|
7 | * @return an empty Path instance to be configured by Ant↵ | | 7 | * @return a new Path instance which Ant will configure with a file search↵
|
8 | .↵ | | 8 | * path.↵
|
9 | */↵ | | 9 | */↵
|
10 | public Path createClasspath() {↵ | | 10 | public Path createFilepath() {↵
|
11 | if (this.classpath == null) {↵ | | 11 | if (this.filepath == null) {↵
|
12 | this.classpath = new Path(getProject());↵ | | 12 | this.filepath = new Path(getProject());↵
|
13 | }↵ | | 13 | }↵
|
14 | return this.classpath.createPath();↵ | | 14 | return this.filepath.createPath();↵
|
15 | | | 15 |
|