1 | void setClasspath(Path classpath) {↵ | | 1 | void setFilepath(Path filepath) {↵
|
2 | createClasspath().append(classpath);↵ | | 2 | createFilepath().append(filepath);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * Set the optional classpath to the XSL processor↵ | | 5 | * Path to search for file resources.↵
|
6 | *↵ | | 6 | *↵
|
7 | * @return a path instance to be configured by the Ant core↵ | | 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 (classpath == null) {↵ | | 11 | if (this.filepath == null) {↵
|
12 | classpath = new Path(getProject());↵ | | 12 | this.filepath = new Path(getProject());↵
|
13 | }↵ | | 13 | }↵
|
14 | return classpath.createPath();↵ | | 14 | return this.filepath.createPath();↵
|
15 | | | 15 |
|