]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.structural2/src/org/simantics/structural2/scl/ComponentTypeProperty.java
Merge "Remove unnecessary getComparableKey from HashMapBinding"
[simantics/platform.git] / bundles / org.simantics.structural2 / 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 }