Package org.objectweb.asm.util
Interface TextifierSupport
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface TextifierSupportAnAttributethat can print a readable representation of itself.- Author:
- Eugene Kuleshov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidtextify(java.lang.StringBuilder outputBuilder, java.util.Map<org.objectweb.asm.Label,java.lang.String> labelNames)Generates a human readable representation of this attribute.
-
-
-
Method Detail
-
textify
void textify(java.lang.StringBuilder outputBuilder, java.util.Map<org.objectweb.asm.Label,java.lang.String> labelNames)Generates a human readable representation of this attribute.- Parameters:
outputBuilder- where the human representation of this attribute must be appended.labelNames- the human readable names of the labels.
-
-