//****************************************************************** // Cinema.java Author: Torben Hoffmann // revideret af Anne Haxthausen // A simple represtation of cinemas. //****************************************************************** public class Cinema { private boolean[][] cinema; public Cinema (int[] seatsOnRow) { cinema = new boolean[seatsOnRow.length][]; for (int i=0; i