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

it.xsemantics.runtime.Result3 Maven / Gradle / Ivy

There is a newer version: 1.12.1
Show newest version
/**
 * 
 */
package it.xsemantics.runtime;

/**
 * @author Lorenzo Bettini
 * 
 */
public class Result3 extends Result2 {

	private T third;

	public Result3(F first) {
		super(first);
	}

	public Result3(F first, S second) {
		super(first, second);
	}

	public Result3(F first, S second, T third) {
		this(first, second);
		this.third = third;
	}

	public Result3(RuleFailedException ruleFailedException) {
		super(ruleFailedException);
	}

	public T getThird() {
		return third;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy