eval language switching in debugger editor, TextWithImports aware of it

This commit is contained in:
peter
2011-07-01 12:26:16 +02:00
parent d17de8d80d
commit c36db91e88
7 changed files with 136 additions and 36 deletions
@@ -15,7 +15,9 @@
*/
package com.intellij.debugger.engine.evaluation;
import com.intellij.openapi.fileTypes.FileType;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
public interface TextWithImports {
String getText();
@@ -30,4 +32,8 @@ public interface TextWithImports {
boolean isEmpty();
String toExternalForm();
@Nullable
FileType getFileType();
}