diff options
author | aclement <aclement> | 2011-04-04 18:18:01 +0000 |
---|---|---|
committer | aclement <aclement> | 2011-04-04 18:18:01 +0000 |
commit | eda49e25eadfed864174d4b158860ce44dab5327 (patch) | |
tree | f70795aa1006343a2e94b8a57ada6b18cfab0bbe /testing/src | |
parent | c7c8841b2efaa4ba6f35f1b005542d5242561693 (diff) | |
download | aspectj-eda49e25eadfed864174d4b158860ce44dab5327.tar.gz aspectj-eda49e25eadfed864174d4b158860ce44dab5327.zip |
290741: encoding option on ICompilerConfiguration
Diffstat (limited to 'testing/src')
-rw-r--r-- | testing/src/org/aspectj/testing/ajde/CompileCommand.java | 13 |
1 files 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; + } + } |