Package net.sf.rej.java.instruction

Examples of net.sf.rej.java.instruction._bipush


   * @param instr identifies the instruction whose hint is being requested.
   * @return a description of what the instruction does.
   */
  public String getHint(Instruction instr) {
    if (instr.getOpcode() == _wide.OPCODE) {
      _wide wide = (_wide) instr;
      return "wide " + this.hints[wide.getInstruction().getOpcode()];
    } else {
      return this.hints[instr.getOpcode()];
    }
  }
View Full Code Here

TOP

Related Classes of net.sf.rej.java.instruction._bipush

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.