/* * Copyright (c) 1996 CONNIE K. PENG All Rights Reserved. * * Permission to use, copy, modify, and distribute this software * and its documentation for NON-COMMERCIAL purposes. * */ public class Line { int start; // starting point index int end; // ending point index boolean OutOfRange; public Line(Line l) { start = l.start; end = l.end; OutOfRange = l.OutOfRange; } public Line(int s, int e) { start = s; end = e; OutOfRange = false; } }