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