]> source.dussan.org Git - aspectj.git/commitdiff
290741: encoding option on ICompilerConfiguration
authoraclement <aclement>
Mon, 4 Apr 2011 18:18:01 +0000 (18:18 +0000)
committeraclement <aclement>
Mon, 4 Apr 2011 18:18:01 +0000 (18:18 +0000)
testing/src/org/aspectj/testing/ajde/CompileCommand.java

index 0ffa4858f74e509533ae51afe55326bf2a9775e1..2f819db44b597d39b81fac937b1b20617aeff57c 100644 (file)
@@ -35,9 +35,9 @@ import org.aspectj.ajde.core.JavaOptions;
 import org.aspectj.bridge.AbortException;
 import org.aspectj.bridge.ICommand;
 import org.aspectj.bridge.IMessage;
+import org.aspectj.bridge.IMessage.Kind;
 import org.aspectj.bridge.IMessageHandler;
 import org.aspectj.bridge.MessageHandler;
-import org.aspectj.bridge.IMessage.Kind;
 import org.aspectj.testing.harness.bridge.Globals;
 import org.aspectj.util.FileUtil;
 
@@ -366,6 +366,10 @@ class MyCompilerConfig implements ICompilerConfiguration {
                return null;
        }
 
+       public String getProjectEncoding() {
+               return null;
+       }
+
 }
 
 class MyOutputLocationManager implements IOutputLocationManager {
@@ -389,12 +393,11 @@ class MyOutputLocationManager implements IOutputLocationManager {
        public String getUniqueIdentifier() {
                return null;
        }
-       
+
        public Map getInpathMap() {
                return Collections.EMPTY_MAP;
        }
 
-
        public String getSourceFolderForFile(File sourceFile) {
                return null;
        }
@@ -410,4 +413,8 @@ class MyOutputLocationManager implements IOutputLocationManager {
                return 0;
        }
 
+       public String getProjectEncoding() {
+               return null;
+       }
+
 }