// Source code file DBRow.java package it372.drawdots; public class DBRow { public int id; public float x, y; public DBRow(int id, float x, float y) { this.id = id; this.x = x; this.y = y; } }