1 | Path createClasspath() {↵ | | 1 | Path createClasspath() {↵
|
2 | if (this.classpath == null) {↵ | | 2 | if (compileClasspath == null) {↵
|
3 | this.classpath = new Path(getProject());↵ | | 3 | compileClasspath = new Path(getProject());↵
|
4 | }↵ | | 4 | }↵
|
5 | return this.classpath.createPath();↵ | | 5 | return compileClasspath.createPath();↵
|
6 | }↵ | | 6 | }↵
|
|
7 | /**↵ | | 7 | /**↵
|
8 | * Where to find the parser class; optional.↵ | | 8 | * ↵
|
9 | * @see #setClasspath↵ | | 9 | Adds to the classpath a reference to↵
|
| | | 10 | * a <path> defined elsewhere.↵
|
10 | * @param r reference to a classpath defined elsewhere↵ | | 11 | * @param pathRef the reference to add to the classpath↵
|
11 | */↵ | | 12 | */↵
|
12 | public void setClasspathRef(Reference r) {↵ | | 13 | public void setClasspathRef(Reference pathRef) {↵
|
13 | createClasspath().setRefid(r);↵ | | 14 | createClasspath().setRefid(pathRef);↵
|
14 | | | 15 |
|