]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.structural2/src/org/simantics/structural2/procedural/Property.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.structural2 / src / org / simantics / structural2 / procedural / Property.java
1 package org.simantics.structural2.procedural;
2
3 import org.simantics.db.Resource;
4
5 public class Property {
6
7     public final Resource relation;
8     public final Object value;
9     
10     public Property(Resource relation, Object value) {
11         this.relation = relation;
12         this.value = value;
13     }
14     
15 }