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