1 | Path createClasspath() {↵ | | 1 | Path createBootclasspath() {↵
|
2 | if (this.classpath == null) {↵ | | 2 | if (bootclasspath == null) {↵
|
3 | this.classpath = new Path(getProject());↵ | | 3 | bootclasspath = new Path(getProject());↵
|
4 | }↵ | | 4 | }↵
|
5 | return this.classpath.createPath();↵ | | 5 | return bootclasspath.createPath();↵
|
6 | }↵ | | 6 | }↵
|
|
7 | /**↵ | | 7 | /**↵
|
8 | * Reference to existing path, to use as a classpath.↵ | | 8 | * Adds a reference to ↵
|
9 | * @param r the reference to use↵ | | 9 | a CLASSPATH defined elsewhere.↵
|
| | | 10 | *↵
|
10 | .↵ | | 11 | * @param r the reference to an instance defining the bootclasspath.↵
|
11 | */↵ | | 12 | */↵
|
12 | public void setClasspathRef(Reference r) {↵ | | 13 | public void setBootClasspathRef(Reference r) {↵
|
13 | createClasspath().setRefid(r);↵ | | 14 | createBootclasspath().setRefid(r);↵
|
14 | | | 15 |
|