From eda49e25eadfed864174d4b158860ce44dab5327 Mon Sep 17 00:00:00 2001 From: aclement Date: Mon, 4 Apr 2011 18:18:01 +0000 Subject: [PATCH] 290741: encoding option on ICompilerConfiguration --- .../org/aspectj/testing/ajde/CompileCommand.java | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) 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; + } + } -- 2.39.5