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