]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.structural2/src/org/simantics/structural2/procedural/Component.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.structural2 / src / org / simantics / structural2 / procedural / Component.java
1 package org.simantics.structural2.procedural;
2
3 import java.util.List;
4
5 import org.simantics.db.Resource;
6
7 public class Component implements SubstructureElement {
8     public final String name;
9     public final Resource type;
10     public final List<Property> properties;
11     
12     public Component(String name, Resource type, List<Property> properties) {
13         this.name = name;
14         this.type = type;
15         this.properties = properties;
16     }
17 }