Package org.objectweb.asm.util
Interface Textifiable
-
public interface Textifiable
AnAttribute
that can print a readable representation of itself. Implementations should construct readable output from an attribute data structure. Such representation could be used in unit test assertions.- Author:
- Eugene Kuleshov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
textify(java.lang.StringBuffer buf, java.util.Map<Label,java.lang.String> labelNames)
Build a human readable representation of this attribute.
-
-
-
Method Detail
-
textify
void textify(java.lang.StringBuffer buf, java.util.Map<Label,java.lang.String> labelNames)
Build a human readable representation of this attribute.- Parameters:
buf
- a buffer used for printing Java code.labelNames
- map of label instances to their names.
-
-