1 | Path createSourcespath() {↵ | | 1 | Path createClasspath() {↵
|
2 | if (sourcesPath == null) {↵ | | 2 | if (classpath == null) {↵
|
3 | sourcesPath = new Path(getProject());↵ | | 3 | classpath = new Path(getProject());↵
|
4 | }↵ | | 4 | }↵
|
5 | return sourcesPath.createPath();↵ | | 5 | return classpath.createPath();↵
|
6 | }↵ | | 6 | }↵
|
|
7 | /**↵ | | 7 | /**↵
|
8 | * Gets the sourcepath.↵ | | 8 | * Get the ↵
|
9 | * @return the sources path↵ | | |
|
10 | * @deprecated since 1.6.x.↵ | | |
|
11 | */↵ | | |
|
12 | public Path getSourcespath() {↵ | | 9 | classpath to the weblogic classpaths↵
|
13 | return sourcesPath;↵ | | 10 | * @return ↵
|
14 | }↵ | | |
|
|
15 | /**↵ | | |
|
16 | * Adds a path to class code to analyze.↵ | | |
|
17 | * @return a classes path↵ | | 11 | a path to be configured↵
|
18 | */↵ | | 12 | */↵
|
19 | public Path createClassespath() {↵ | | 13 | public Path createWLClasspath() {↵
|
20 | if (classesPath == null) {↵ | | 14 | if (weblogicClasspath == null) {↵
|
21 | classesPath = new Path(getProject());↵ | | 15 | weblogicClasspath = new Path(getProject());↵
|
22 | }↵ | | 16 | }↵
|
23 | return classesPath.createPath();↵ | | 17 | return weblogicClasspath.createPath();↵
|
24 | | | 18 |
|