package Lect27Arrays2D; public class BulletinBoard { static final int MSG_DISPLAY_LEN = 20; // Standard width of message for displaying private String[][] board; // The messages in the bulletin board /** * Creates an empty bulletin board. * @param maxRows * @param maxCols */ public BulletinBoard(int maxRows, int maxCols) { board = new String[maxRows][]; for (int row=0; row