Commit be9b5196 authored by Martti Käärik's avatar Martti Käärik
Browse files

Unmapped special value.

parent c7f5c064
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -8,6 +8,7 @@ import java.util.Map;

import org.etsi.mts.tdl.execution.java.tri.Data;
import org.etsi.mts.tdl.execution.java.tri.Mapping;
import org.etsi.mts.tdl.execution.java.tri.SpecialValue;
import org.etsi.mts.tdl.execution.java.tri.Type;
import org.etsi.mts.tdl.execution.java.tri.Value;

@@ -30,6 +31,10 @@ public class ValueImpl extends NamedElementImpl implements Value, TriImpl<ValueI
		this.type = type;
	}

	public ValueImpl(SpecialValue specialValue) {
		this.value = specialValue;
	}

	public ValueImpl setType(TypeImpl type) {
		this.type = type;
		return this;