Interface ASMifierSupport
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
An
Attribute that can generate the ASM code to create an equivalent
attribute.- Author:
- Eugene Kuleshov
-
Method Summary
Modifier and TypeMethodDescriptionvoidasmify(StringBuilder outputBuilder, String visitorVariableName, Map<org.objectweb.asm.Label, String> labelNames) Generates the ASM code to create an attribute equal to this attribute.
-
Method Details
-
asmify
void asmify(StringBuilder outputBuilder, String visitorVariableName, Map<org.objectweb.asm.Label, String> labelNames) Generates the ASM code to create an attribute equal to this attribute.- Parameters:
outputBuilder- where the generated code must be appended.visitorVariableName- the name of the visitor variable in the produced code.labelNames- the names of the labels in the generated code.
-