Package cn.wensiqun.asmsupport.asm.adapter

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

package cn.wensiqun.asmsupport.asm.adapter;

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

public class VisitLdcInsnAdapter implements VisitXInsnAdapter {

    private Object cts;
 
  public VisitLdcInsnAdapter(Object cts) {
    this.cts = cts;
  }

  @Override
  public void newVisitXInsnOperator(ProgramBlock block) {
    new VisitLdcInsn(block, cts);
  }

}
TOP

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

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.