Package org.objectweb.asm.util
Interface ASMifiable
-
@Deprecated public interface ASMifiable
Deprecated.This interface is no longer supported (since ASM 7.1), because it uses a StringBuffer instead of a StringBuilder. UseASMifierSupportinstead.AnAttributethat can generate the ASM code to create an equivalent attribute.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidasmify(StringBuffer outputBuffer, String visitorVariableName, Map<Label,String> labelNames)Deprecated.Generates the ASM code to create an attribute equal to this attribute.
-
-
-
Method Detail
-
asmify
void asmify(StringBuffer outputBuffer, String visitorVariableName, Map<Label,String> labelNames)
Deprecated.Generates the ASM code to create an attribute equal to this attribute.- Parameters:
outputBuffer- 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.
-
-