Home | History | Annotate | Download | only in launch

Lines Matching refs:classpath

42  * the classpath since it can find a correct reference to all the necessary
47 * necessary also puts back the junit.jar in the user classpath.
70 String[] classpath = super.getClasspath(configuration);
71 return fixClasspath(classpath, getJavaProjectName(configuration));
94 * Add the junit.jar to the user classpath; since Eclipse was relying on
98 * @param classpath Array containing classpath
101 * @return a new modified (if applicable) classpath
103 public static String[] fixClasspath(String[] classpath, String projectName) {
105 for (int i = 0; i < classpath.length; i++) {
106 if (classpath[i].endsWith(JUNIT_JAR)) {
107 return classpath;
121 // we extend the classpath by one element and append junit.jar
122 String[] newClasspath = new String[classpath.length + 1];
123 System.arraycopy(classpath, 0, newClasspath, 0, classpath.length);
125 classpath = newClasspath;
133 // Return the classpath as-is (with no junit.jar) anyway because we
137 return classpath;