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

janala.logger.inst.GETVALUE_long 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 GETVALUE_long extends Instruction implements GETVALUE {
  public long v;

  public GETVALUE_long(long v) {
    super(-1, -1);
    this.v = v;
  }

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

  @Override
  public String toString() {
    return "GETVALUE_long v=" + v;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy