All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.zving.framework.thirdparty.asm.tree.LocalVariableNode Maven / Gradle / Ivy

There is a newer version: 0.3.0
Show newest version
package com.zving.framework.thirdparty.asm.tree;

import com.zving.framework.thirdparty.asm.MethodVisitor;

public class LocalVariableNode
{
  public String name;
  public String desc;
  public String signature;
  public LabelNode start;
  public LabelNode end;
  public int index;
  
  public LocalVariableNode(String name, String desc, String signature, LabelNode start, LabelNode end, int index)
  {
    this.name = name;
    this.desc = desc;
    this.signature = signature;
    this.start = start;
    this.end = end;
    this.index = index;
  }
  
  public void accept(MethodVisitor mv)
  {
    mv.visitLocalVariable(this.name, this.desc, this.signature, this.start.getLabel(), this.end.getLabel(), this.index);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy