13 {
14 JFrame frame = new JFrame();
15 frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
16 JPanel panel = new JPanel();
17 JButton button = new JButton("Just Click It");
18 button.addActionListener(this);
19 text = new JTextArea(10, 20);
20 text.setLineWrap(true);
21 JScrollPane scroller = new JScrollPane(text);
22 scroller.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
23 scroller.setHorizontalScrollBarPolicy(ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
24 panel.add(scroller);
25 frame.add(panel, BorderLayout.CENTER);
26 frame.add(button, BorderLayout.SOUTH);
27 frame.setSize(350, 300);
28 frame.setVisible(true);
29 }