]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.structural2/src/org/simantics/structural2/scl/ComponentTypeProperty.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.structural2 / src / org / simantics / 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