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

de.tla2b.config.ValueObj Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
/**
 * @author Dominik Hansen 
 **/

package de.tla2b.config;

import de.tla2b.types.TLAType;
import tlc2.value.Value;

public class ValueObj {
	private Value value;
	private TLAType type;

	public ValueObj(Value value, TLAType t) {
		this.value = value;
		this.type = t;
	}

	public Value getValue() {
		return value;
	}

	public void setValue(Value value) {
		this.value = value;
	}

	public void setType(TLAType type) {
		this.type = type;
	}
	
	public TLAType getType(){
		return type;
	}
		
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy