package org.simantics.scl.runtime.unification; public class UVar { boolean bound; Object ref; public void setRef(Object ref) { this.bound = true; this.ref = ref; } }