Menu

#1 adds support for nested classpath elements in jse

open
nobody
None
5
2004-05-28
2004-05-28
No

RCS file:
/cvsroot/jse/jse/src/net/sf/jse/ant/JseAntTask.java,v
retrieving revision 1.1
diff -r1.1 JseAntTask.java
30c30,45
< this.classpath = classpath;
---
> if(classpath == null) {
> this.classpath = classpath;
> } else {
> this.classpath.append(classpath);
> }
> }
>
> public Path getClasspath() {
> return classpath;
> }
>
> public Path createClasspath() {
> if(classpath == null) {
> classpath = new Path(getProject());
> }
> return classpath.createPath();

Discussion


Log in to post a comment.