langtools/src/share/classes/com/sun/tools/classfile/Instruction.java
changeset 22163 3651128c74eb
parent 22153 f9f06fcca59d
equal deleted inserted replaced
22162:3b3e23e67329 22163:3651128c74eb
    91         }
    91         }
    92 
    92 
    93         /** The length, in bytes, of this kind of instruction, or -1 is the
    93         /** The length, in bytes, of this kind of instruction, or -1 is the
    94          *  length depends on the specific instruction. */
    94          *  length depends on the specific instruction. */
    95         public final int length;
    95         public final int length;
    96     };
    96     }
    97 
    97 
    98     /** A utility visitor to help decode the operands of an instruction.
    98     /** A utility visitor to help decode the operands of an instruction.
    99      *  @see Instruction#accept */
    99      *  @see Instruction#accept */
   100     public interface KindVisitor<R,P> {
   100     public interface KindVisitor<R,P> {
   101         /** See {@link Kind#NO_OPERANDS}, {@link Kind#WIDE_NO_OPERANDS}. */
   101         /** See {@link Kind#NO_OPERANDS}, {@link Kind#WIDE_NO_OPERANDS}. */