package grader.Main; import java.util.Collection; /** * * ColorList is an array of colors that are represented as ints. Dark Red * is 1, Red is 2, Light Red is 3, Yellow is 4, Light Orange i *s 5, Orange is 6, Dark Orange is 7, Light Green is 8, Green * is 9, Dark Green is 10, Light Blue is 11, Blue is 12, Dark * Blue is 13, Indigo is 14. ColorName is a string that holds the color name. * * @author * @version * **/ public class ColorList { /** Default Constructor **/ public ColorList() { } protected int color; protected String colorName; }