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

io.toast.tk.runtime.block.locator.ActionIndex Maven / Gradle / Ivy

Go to download

Toast Toolkit Runtime Module contains covers: - Test Source Adapters - Test Parsing - Test Execution - Test Report generation

The newest version!
package io.toast.tk.runtime.block.locator;

public class ActionIndex {

	String item;

	int start;

	int end;
	
	public ActionIndex(
		final String item,
		final int start,
		final int end
	) {
		this.item = item;
		this.start = start;
		this.end = end;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy