![JAR search and dependency download from the Maven repository](/logo.png)
com.github.dakusui.lisj.FormResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jcunit Show documentation
Show all versions of jcunit Show documentation
Automated combinatorial testing framework on top of JUnit
package com.github.dakusui.lisj;
public class FormResult {
private int nextPosition;
private Object value;
private int numPositions;
public FormResult(int nextPosition, int numPositions, Object value) {
this.nextPosition = nextPosition;
this.numPositions = numPositions;
this.value = value;
}
public int nextPosition() {
return nextPosition;
}
public void nextPosition(int nextPosition) {
this.nextPosition = nextPosition;
}
public Object value() {
return value;
}
public void value(Object value) {
this.value = value;
}
public void incrementPosition() {
this.nextPosition++;
}
public int numPositions() {
return this.numPositions;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy