package org.simantics.diagram.flag; public class IOTableInfo { String name; double x, y, width, rowHeight; public IOTableInfo(String name, double x, double y, double width, double rowHeight) { this.name = name; this.x = x; this.y = y; this.width = width; this.rowHeight = rowHeight; } }