JPanel bottomArea = new JPanel(new BorderLayout(5, 5));
//Components of the lower area.
JPanel buttonsArea = new JPanel(new GridLayout(2, 1, 5, 5));
buttonsArea.setSize(300, 200);
buttonsArea.setLayout(new GridLayout(6, 1));
sampleQNAni = new SampleQNAnimation();
JScrollPane jsp = new JScrollPane(sampleQNAni, ScrollPaneConstants.VERTICAL_SCROLLBAR_NEVER, ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
jsp.setPreferredSize(new Dimension(200, 120));
jsp.setBorder(new EtchedBorder(EtchedBorder.LOWERED));
JPanel bottomRightPanel = new JPanel(new GridLayout(2, 1));
upperArea.add(jsp);