1 | Path createClasspath() {↵ | | 1 | Path createClasspath() {↵
|
2 | if (this.classpath == null) {↵ | | 2 | if (this.classpath == null) {↵
|
3 | this.classpath = new Path(getProject());↵ | | 3 | this.classpath = new Path(getProject());↵
|
4 | }↵ | | 4 | }↵
|
5 | return this.classpath.createPath();↵ | | 5 | return this.classpath.createPath();↵
|
6 | }↵ | | 6 | }↵
|
|
7 | /**↵ | | 7 | /**↵
|
8 | * Set the classpath for loading the driver↵ | | 8 | * the classpath to use when looking ↵
|
9 | * using the classpath reference.↵ | | 9 | up a resource,↵
|
| | | 10 | * given as reference to a <path> defined elsewhere↵
|
10 | * @param r a reference to a classpath↵ | | 11 | * @param r a reference to a classpath↵
|
11 | */↵ | | 12 | */↵
|
12 | public void setClasspathRef(Reference r) {↵ | | 13 | public void setClasspathRef(Reference r) {↵
|
13 | createClasspath().setRefid(r);↵ | | 14 | createClasspath().setRefid(r);↵
|
14 | | | 15 |
|