1 | void setSourcepath(Path src) {↵ | | 1 | void setClasspath(Path classpath) {↵
|
2 | if (sourcePath == null) {↵ | | 2 | if (compileClasspath == null) {↵
|
3 | sourcePath = src;↵ | | 3 | compileClasspath = classpath;↵
|
4 | } else {↵ | | 4 | } else {↵
|
5 | sourcePath.append(src);↵ | | 5 | compileClasspath.append(classpath);↵
|
6 | }↵ | | 6 | }↵
|
7 | }↵ | | 7 | }↵
|
|
8 | /**↵ | | 8 | /**↵
|
9 | * Create a path to be configured with the locations of the source↵ | | 9 | * ↵
|
10 | * files.↵ | | |
|
11 | *↵ | | 10 | Gets the classpath to be used for this compilation.↵
|
| | | 11 | * @return the class path used for compilation↵
|
| | | 12 | */↵
|
| | | 13 | public Path getClasspath() {↵
|
12 | * @return a new Path instance↵ | | 14 | return compileClasspath;↵
|
| | | 15 | }↵
|
|
| | | 16 | /**↵
|
13 | to be configured by the Ant core.↵ | | 17 | * Adds a path to the classpath.↵
|
| | | 18 | * @return a classpath↵
|
14 | */↵ | | 19 | */↵
|
15 | public Path createSourcepath() {↵ | | 20 | public Path createClasspath() {↵
|
16 | if (sourcePath == null) {↵ | | 21 | if (compileClasspath == null) {↵
|
17 | sourcePath = new Path(getProject());↵ | | 22 | compileClasspath = new Path(getProject());↵
|
18 | }↵ | | 23 | }↵
|
19 | return sourcePath.createPath();↵ | | 24 | return compileClasspath.createPath();↵
|
20 | | | 25 |
|