]> source.dussan.org Git - aspectj.git/commitdiff
added module/modulesourcepath to compiler configuration interface
authorAndy Clement <aclement@pivotal.io>
Fri, 20 Oct 2017 19:44:16 +0000 (12:44 -0700)
committerAndy Clement <aclement@pivotal.io>
Fri, 20 Oct 2017 19:44:16 +0000 (12:44 -0700)
ajbrowser/src/org/aspectj/tools/ajbrowser/core/BrowserCompilerConfiguration.java
ajde.core/src/org/aspectj/ajde/core/ICompilerConfiguration.java
ajde.core/testsrc/org/aspectj/ajde/core/TestCompilerConfiguration.java
ajde/testsrc/org/aspectj/ajde/ui/utils/TestCompilerConfiguration.java

index 26f20bef251346e297beacb7afb55afcc5489b0d..35f676e1b68b03f2b5890ff8f25a7baabac0ac30 100644 (file)
@@ -124,4 +124,14 @@ public class BrowserCompilerConfiguration implements ICompilerConfiguration {
                return null;
        }
 
+       @Override
+       public String getModulepath() {
+               return null;
+       }
+
+       @Override
+       public String getModuleSourcepath() {
+               return null;
+       }
+
 }
index ef3a56e692cb324657c0c88c3b5252e895e3946f..8f83517590b22fd145a787ae1ce96a460ccdc0a9 100644 (file)
@@ -61,10 +61,11 @@ public interface ICompilerConfiguration extends CompilerConfigurationChangeFlags
         */
        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
index 2265014f962f6a197fea9963747ba2234e4150f2..01378661110087fc1a9c9dfce71fe2016abb4132 100644 (file)
@@ -62,9 +62,9 @@ public class TestCompilerConfiguration implements ICompilerConfiguration {
                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();
@@ -187,4 +187,14 @@ public class TestCompilerConfiguration implements ICompilerConfiguration {
                return null;
        }
 
+       @Override
+       public String getModulepath() {
+               return null;
+       }
+
+       @Override
+       public String getModuleSourcepath() {
+               return null;
+       }
+
 }
index 32f12c82d8be9dac430526deab8666636d33cd37..8c3b4ac1fe4a55ff104714cdea328184bf40d076 100644 (file)
@@ -189,4 +189,14 @@ public class TestCompilerConfiguration implements ICompilerConfiguration {
                return null;
        }
 
+       @Override
+       public String getModulepath() {
+               return null;
+       }
+
+       @Override
+       public String getModuleSourcepath() {
+               return null;
+       }
+
 }