// VerticalLines Example // Source Code File: VertLine.java package it372.sjost.verticallines; public class VertLine { int x; String color; public VertLine(int x, String color) { this.x = x; this.color = color; } public int getX() { return x; } public String getColor() { return color; } }