]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.diagram/src/org/simantics/diagram/flag/IOTableInfo.java
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / bundles / org.simantics.diagram / src / org / simantics / diagram / flag / IOTableInfo.java
1 package org.simantics.diagram.flag;
2
3 public class IOTableInfo {
4
5     String name;
6     double x, y, width, rowHeight;
7
8     public IOTableInfo(String name, double x, double y, double width, double rowHeight) {
9         this.name = name;
10         this.x = x;
11         this.y = y;
12         this.width = width;
13         this.rowHeight = rowHeight;
14     }
15
16 }