Interface BytecodeAttribute
-
- All Known Implementing Classes:
InnerClass,LocalVariable
public interface BytecodeAttributeBytecode attribute.- Since:
- 0.4
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DirectivesAttributedirectives()Converts to directives.voidwrite(org.objectweb.asm.ClassVisitor clazz)Write to class.voidwrite(org.objectweb.asm.MethodVisitor method, AsmLabels labels)Write to method.
-
-
-
Method Detail
-
write
void write(org.objectweb.asm.ClassVisitor clazz)
Write to class.- Parameters:
clazz- Bytecode where to write.
-
write
void write(org.objectweb.asm.MethodVisitor method, AsmLabels labels)Write to method.- Parameters:
method- Bytecode where to write.labels- Method labels.
-
directives
DirectivesAttribute directives()
Converts to directives.- Returns:
- Directives.
-
-