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

janala.logger.inst.Instruction 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;

import java.io.Serializable;

public abstract class Instruction implements Serializable {
  public final int iid;
  public final int mid;

  public abstract void visit(IVisitor visitor);

  public Instruction(int iid, int mid) {
    this.iid = iid;
    this.mid = mid;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy