public class Line extends Figure { public Line (int horiz, int vert, int l) { super(horiz,vert); length = l; } protected int length; // the length of each side }