1 | Path createClasspath() {↵ | | 1 | Path createClasspath() {↵
|
2 | if (classpath == null) {↵ | | 2 | if (this.classpath == null) {↵
|
3 | classpath = new Path(getProject());↵ | | 3 | this.classpath = new Path(getProject());↵
|
4 | }↵ | | 4 | }↵
|
5 | return classpath.createPath();↵ | | 5 | return this.classpath.createPath();↵
|
6 | }↵ | | 6 | }↵
|
|
7 | /**↵ | | 7 | /**↵
|
8 | * Set the reference to an optional classpath to the XSL processor↵ | | 8 | * Set the ↵
|
9 | *↵ | | |
|
10 | * @param r the id of the Ant path instance to act as↵ | | 9 | classpath for loading the driver↵
|
11 | the classpath↵ | | 10 | * using the classpath↵
|
12 | * for loading the XSL processor↵ | | 11 | reference.↵
|
| | | 12 | * @param r a reference to a classpath↵
|
13 | */↵ | | 13 | */↵
|
14 | public void setClasspathRef(Reference r) {↵ | | 14 | public void setClasspathRef(Reference r) {↵
|
15 | createClasspath().setRefid(r);↵ | | 15 | createClasspath().setRefid(r);↵
|
16 | | | 16 |
|