/* Cinema.java Version history: - 2002-09-10 - minor changes to formatting and in the toString() method -- Philip Heede - 2001-10-xx - minor updates -- Anne Haxthausen - 2000-10-xx - initial release -- Torben Hoffman - - - - A simple representation of cinemas. */ public class Cinema { private boolean[][] cinema; public Cinema(int[] seatsOnRow) { cinema = new boolean[seatsOnRow.length][]; for (int i=0; i