summaryrefslogtreecommitdiffstats
path: root/src/org/jetbrains/java/decompiler/struct/IDecompiledData.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/jetbrains/java/decompiler/struct/IDecompiledData.java')
-rw-r--r--src/org/jetbrains/java/decompiler/struct/IDecompiledData.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/org/jetbrains/java/decompiler/struct/IDecompiledData.java b/src/org/jetbrains/java/decompiler/struct/IDecompiledData.java
index f309b0e..25f1f88 100644
--- a/src/org/jetbrains/java/decompiler/struct/IDecompiledData.java
+++ b/src/org/jetbrains/java/decompiler/struct/IDecompiledData.java
@@ -15,9 +15,11 @@
*/
package org.jetbrains.java.decompiler.struct;
+import org.jetbrains.java.decompiler.main.TextBuffer;
+
public interface IDecompiledData {
String getClassEntryName(StructClass cl, String entryname);
- String getClassContent(StructClass cl);
+ TextBuffer getClassContent(StructClass cl);
}