]> gerrit.simantics Code Review - simantics/platform.git/blob - src/org/simantics/structural2/scl/ComponentTypeProperty.java
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / src / org / simantics / structural2 / scl / ComponentTypeProperty.java
1 package org.simantics.structural2.scl;
2
3 import org.simantics.db.Resource;
4 import org.simantics.scl.compiler.types.Type;
5
6 public class ComponentTypeProperty {
7         public final Resource relation;
8         public final Type type;
9         
10         public ComponentTypeProperty(Resource relation, Type type) {
11                 this.relation = relation;
12                 this.type = type;
13         }       
14 }