1 | Path createBootclasspath() {↵ | | 1 | Path createClasspath() {↵
|
2 | if (bootclasspath == null) {↵ | | 2 | if (this.classpath == null) {↵
|
3 | bootclasspath = new Path(getProject());↵ | | 3 | this.classpath = new Path(getProject());↵
|
4 | }↵ | | 4 | }↵
|
5 | return bootclasspath.createPath();↵ | | 5 | return this.classpath.createPath();↵
|
6 | }↵ | | 6 | }↵
|
|
7 | /**↵ | | 7 | /**↵
|
8 | * To the bootstrap path, this adds a reference to a↵ | | 8 | * Set the classpath for loading the driver↵
|
9 | classpath defined elsewhere.↵ | | 9 | * using the classpath reference.↵
|
10 | * @param r a reference to a classpath↵ | | 10 | * @param r a reference to a classpath↵
|
11 | * @todo this needs to be documented in the HTML.↵ | | |
|
12 | */↵ | | 11 | */↵
|
13 | public void setBootClasspathRef(Reference r) {↵ | | 12 | public void setClasspathRef(Reference r) {↵
|
14 | createBootclasspath().setRefid(r);↵ | | 13 | createClasspath().setRefid(r);↵
|
15 | | | 14 |
|