*/
public List<File> getProjectSourceFilesChanged();
- /**
- * @return the classpath to use
- */
public String getClasspath();
+
+ public String getModulepath();
+
+ public String getModuleSourcepath();
/**
* @return the IOutputLocationManager associated with this compiler configuration
StringBuilder classpath = new StringBuilder();
classpath.append(projectPath);
if (LangUtil.is19VMOrGreater()) {
- classpath.append(File.pathSeparator).append(LangUtil.getJrtFsFilePath());
+ classpath.append(File.pathSeparator).append(LangUtil.getJrtFsFilePath());
} else {
- classpath.append(File.pathSeparator).append(System.getProperty("sun.boot.class.path"));
+ classpath.append(File.pathSeparator).append(System.getProperty("sun.boot.class.path"));
}
classpath.append(File.pathSeparator).append(AjcTests.aspectjrtClasspath());
return classpath.toString();
return null;
}
+ @Override
+ public String getModulepath() {
+ return null;
+ }
+
+ @Override
+ public String getModuleSourcepath() {
+ return null;
+ }
+
}