Package org.objectweb.asm.util
Interface Textifiable
-
@Deprecated public interface Textifiable
Deprecated.This interface is no longer supported (since ASM 7.1), because it uses a StringBuffer instead of a StringBuilder. UseTextifierSupport
instead.AnAttribute
that can print a readable representation of itself.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
textify(StringBuffer outputBuffer, Map<Label,String> labelNames)
Deprecated.Generates a human readable representation of this attribute.
-
-
-
Method Detail
-
textify
void textify(StringBuffer outputBuffer, Map<Label,String> labelNames)
Deprecated.Generates a human readable representation of this attribute.- Parameters:
outputBuffer
- where the human representation of this attribute must be appended.labelNames
- the human readable names of the labels.
-
-