// Change the font of the JList
lstBoard.setFont(lstBoard.getFont().deriveFont(11));
// Construct the add message controller and add it to the submit button
btnSubmit.addActionListener(new AddMessageController(lstBoardModel, this));
// Set the layout manager of this panel that controls the positions of the components
setLayout(new BoxLayout(this, BoxLayout.PAGE_AXIS)); // components will be arranged vertically
// Put the listbox in a scroll pane