/** @author Scott Marshall @author University of Glasgow, MSc IT Project 2001 @author Building an OnLine Course in Computing Fundamentals */ package ukacgla_2inputKMap; import ukacgla_KMap.*; class Cell extends Abstract_Cell { /** Each cell in the K Map is read, and the information stored as a Cell object Cell holds the 2D coordinate from the table, plus a string to describe this coordinate */ public Cell(String x, String y, int a, int b){ super(x,y,a,b); } }