Package cn.wensiqun.asmsupport.asm.adapter

Source Code of cn.wensiqun.asmsupport.asm.adapter.VisitIntInsnAdapter

package cn.wensiqun.asmsupport.asm.adapter;

import cn.wensiqun.asmsupport.block.ProgramBlock;
import cn.wensiqun.asmsupport.operators.asmdirect.VisitIntInsn;

public class VisitIntInsnAdapter implements VisitXInsnAdapter {

  private int opcode;
  private int operand;
 
  public VisitIntInsnAdapter(int opcode, int operand) {
    this.opcode = opcode;
    this.operand = operand;
  }

  @Override
  public void newVisitXInsnOperator(ProgramBlock block) {
    new VisitIntInsn(block, opcode, operand);
  }

}
TOP

Related Classes of cn.wensiqun.asmsupport.asm.adapter.VisitIntInsnAdapter

TOP
Copyright © 2018 www.massapi.com. 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.