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

janala.logger.inst.LDC_String Maven / Gradle / Ivy

Go to download

JQF: Feedback-directed Quickcheck for Java - Instrumentation and event generation module

There is a newer version: 2.0
Show newest version
package janala.logger.inst;

public class LDC_String extends Instruction {
  public String c;
  public int address;

  public LDC_String(int iid, int mid, String c, int address) {
    super(iid, mid);
    this.c = c;
    this.address = address;
  }

  public void visit(IVisitor visitor) {
    visitor.visitLDC_String(this);
  }

  @Override
  public String toString() {
    return "LDC_String iid=" + iid + " mid=" + mid + " c=" + c + " address=" + address;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy