/** @author Scott Marshall @author University of Glasgow, MSc IT Project 2001 @author Building an OnLine Course in Computing Fundamentals */ package ukacgla_3inputKMap; import ukacgla_KMap.*; class Cell extends Abstract_Cell{ /** The String held is made of a three point description of the location. */ public Cell(String x, String y, String z, int a, int b){ super(x,y,a,b); cell = x+y+z; } }