src/share/classes/jdk/internal/org/objectweb/asm/util/Textifiable.java

Print this page

        

*** 20,30 **** * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ ! /* * This file is available under and governed by the GNU General Public * License version 2 only, as published by the Free Software Foundation. * However, the following notice accompanied the original version of this * file: * --- 20,30 ---- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ ! /** * This file is available under and governed by the GNU General Public * License version 2 only, as published by the Free Software Foundation. * However, the following notice accompanied the original version of this * file: *
*** 74,83 **** public interface Textifiable { /** * Build a human readable representation of this attribute. * ! * @param buf a buffer used for printing Java code. ! * @param labelNames map of label instances to their names. */ void textify(StringBuffer buf, Map<Label, String> labelNames); } --- 74,85 ---- public interface Textifiable { /** * Build a human readable representation of this attribute. * ! * @param buf ! * a buffer used for printing Java code. ! * @param labelNames ! * map of label instances to their names. */ void textify(StringBuffer buf, Map<Label, String> labelNames); }