From: aclement Date: Mon, 4 Apr 2011 18:18:01 +0000 (+0000) Subject: 290741: encoding option on ICompilerConfiguration X-Git-Tag: V1_6_12M1~80 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=eda49e25eadfed864174d4b158860ce44dab5327;p=aspectj.git 290741: encoding option on ICompilerConfiguration --- diff --git a/testing/src/org/aspectj/testing/ajde/CompileCommand.java b/testing/src/org/aspectj/testing/ajde/CompileCommand.java index 0ffa4858f..2f819db44 100644 --- a/testing/src/org/aspectj/testing/ajde/CompileCommand.java +++ b/testing/src/org/aspectj/testing/ajde/CompileCommand.java @@ -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; + } + }