Interface XmlBytecodeEntry
-
- All Known Implementing Classes:
XmlInstruction,XmlLabel,XmlTryCatchEntry
public interface XmlBytecodeEntryXML representation of bytecode instruction or a label. Usually each method in bytecode contains a list of bytecode entries. Since they aren't always instructions, we call them entries.- Since:
- 0.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidwriteTo(BytecodeMethod method)Write instruction to the bytecode method.
-
-
-
Method Detail
-
writeTo
void writeTo(BytecodeMethod method)
Write instruction to the bytecode method.- Parameters:
method- Bytecode Method where instruction should be written.
-
-