diff options
Diffstat (limited to 'src/main/java/cuchaz/enigma/CompiledSource.java')
| -rw-r--r-- | src/main/java/cuchaz/enigma/CompiledSource.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/main/java/cuchaz/enigma/CompiledSource.java b/src/main/java/cuchaz/enigma/CompiledSource.java new file mode 100644 index 0000000..fc051d3 --- /dev/null +++ b/src/main/java/cuchaz/enigma/CompiledSource.java | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | package cuchaz.enigma; | ||
| 2 | |||
| 3 | import org.objectweb.asm.tree.ClassNode; | ||
| 4 | |||
| 5 | import javax.annotation.Nullable; | ||
| 6 | |||
| 7 | public interface CompiledSource { | ||
| 8 | @Nullable | ||
| 9 | ClassNode getClassNode(String name); | ||
| 10 | } | ||