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