1 package org.simantics.structural2.procedural;
5 import org.simantics.db.Resource;
7 public class Component implements SubstructureElement {
8 public final String name;
9 public final Resource type;
10 public final List<Property> properties;
12 public Component(String name, Resource type, List<Property> properties) {
15 this.properties = properties;