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

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

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

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

	private S second;
	
	public Result2(F first) {
		super(first);
	}

	public Result2(F first, S second) {
		this(first);
		this.second = second;
	}

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

	public S getSecond() {
		return second;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy