1 | Path createClasspath() {↵ | | 1 | Path createBootclasspath() {↵
|
2 | if (classpath == null) {↵ | | 2 | if (bootclasspath == null) {↵
|
3 | classpath = new Path(getProject());↵ | | 3 | bootclasspath = new Path(getProject());↵
|
4 | }↵ | | 4 | }↵
|
5 | return classpath.createPath();↵ | | 5 | return bootclasspath.createPath();↵
|
6 | }↵ | | 6 | }↵
|
|
7 | /**↵ | | 7 | /**↵
|
8 | * 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 an instance defining the bootclasspath.↵
|
10 | */↵ | | 11 | */↵
|
11 | public void setClasspathRef(Reference r) {↵ | | 12 | public void setBootClasspathRef(Reference r) {↵
|
12 | createClasspath().setRefid(r);↵ | | 13 | createBootclasspath().setRefid(r);↵
|
13 | | | 14 |
|