]> gerrit.simantics Code Review - simantics/platform.git/blob - UVar.java
74ed14f17eadaf283918663e2664d09918be8c2e
[simantics/platform.git] / UVar.java
1 package org.simantics.scl.runtime.unification;
2
3 public class UVar {
4     boolean bound;
5     Object ref;
6     
7     public void setRef(Object ref) {
8         this.bound = true;
9         this.ref = ref;
10     }
11 }