/* * Represents an individual row in the histogram. It has a height, a minimum value * that the range represents, and a maximum range that the range represents. */ package Visual; class HistoRow { int num; int minVal; int maxVal; }