< prev index next >

src/java.xml/share/classes/com/sun/org/apache/bcel/internal/classfile/StackMapEntry.java

Print this page

        

*** 29,39 **** /** * This class represents a stack map entry recording the types of * local variables and the the of stack items at a given byte code offset. * See CLDC specification 5.3.1.2 * - * @version $Id$ * @see StackMap * @see StackMapType */ public final class StackMapEntry implements Node, Cloneable { --- 29,38 ----
*** 140,150 **** * Dump stack map entry * * @param file Output file stream * @throws IOException */ ! public final void dump( final DataOutputStream file ) throws IOException { file.write(frame_type); if (frame_type >= Const.SAME_FRAME && frame_type <= Const.SAME_FRAME_MAX) { // nothing to be done } else if (frame_type >= Const.SAME_LOCALS_1_STACK_ITEM_FRAME && frame_type <= Const.SAME_LOCALS_1_STACK_ITEM_FRAME_MAX) { --- 139,149 ---- * Dump stack map entry * * @param file Output file stream * @throws IOException */ ! public void dump( final DataOutputStream file ) throws IOException { file.write(frame_type); if (frame_type >= Const.SAME_FRAME && frame_type <= Const.SAME_FRAME_MAX) { // nothing to be done } else if (frame_type >= Const.SAME_LOCALS_1_STACK_ITEM_FRAME && frame_type <= Const.SAME_LOCALS_1_STACK_ITEM_FRAME_MAX) {
*** 180,190 **** /** * @return String representation. */ @Override ! public final String toString() { final StringBuilder buf = new StringBuilder(64); buf.append("("); if (frame_type >= Const.SAME_FRAME && frame_type <= Const.SAME_FRAME_MAX) { buf.append("SAME"); } else if (frame_type >= Const.SAME_LOCALS_1_STACK_ITEM_FRAME && --- 179,189 ---- /** * @return String representation. */ @Override ! public String toString() { final StringBuilder buf = new StringBuilder(64); buf.append("("); if (frame_type >= Const.SAME_FRAME && frame_type <= Const.SAME_FRAME_MAX) { buf.append("SAME"); } else if (frame_type >= Const.SAME_LOCALS_1_STACK_ITEM_FRAME &&
*** 424,440 **** /** * @return Constant pool used by this object. */ ! public final ConstantPool getConstantPool() { return constant_pool; } /** * @param constant_pool Constant pool to be used for this object. */ ! public final void setConstantPool( final ConstantPool constant_pool ) { this.constant_pool = constant_pool; } } --- 423,439 ---- /** * @return Constant pool used by this object. */ ! public ConstantPool getConstantPool() { return constant_pool; } /** * @param constant_pool Constant pool to be used for this object. */ ! public void setConstantPool( final ConstantPool constant_pool ) { this.constant_pool = constant_pool; } }
< prev index next >