aboutsummaryrefslogtreecommitdiffstats
path: root/testing/src
diff options
context:
space:
mode:
authoraclement <aclement>2011-04-04 18:18:01 +0000
committeraclement <aclement>2011-04-04 18:18:01 +0000
commiteda49e25eadfed864174d4b158860ce44dab5327 (patch)
treef70795aa1006343a2e94b8a57ada6b18cfab0bbe /testing/src
parentc7c8841b2efaa4ba6f35f1b005542d5242561693 (diff)
downloadaspectj-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.java13
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;
+ }
+
}