import java.util.*; import javax.swing.JOptionPane; /** * Write a description of class GameBoard here. * * @author (your name) * @version (a version number or a date) */ public class GameBoard { protected ArrayList> gameCells = new ArrayList>(); protected ArrayList> holdingCells = new ArrayList>(); protected ArrayList> finalCells = new ArrayList>(); protected Deck newDeck = new Deck(); private final int CARDCELLS = 8; private final int HFCELLS = 4; public GameBoard(){ for(int i = 0;i()); } for(int i = 0;i()); finalCells.add( new Stack()); } } public GameBoard(GameBoard copy){ this.gameCells = copy.gameCells; this.holdingCells = copy.holdingCells; this.finalCells = copy.finalCells; this.newDeck = copy.newDeck; }