!7 p { installWebLAF(); swing { JDesktopPane desktop = jDesktopPane(); showFrame(desktop); JInternalFrame frame = new JInternalFrame(desktop); frame.setBounds(100, 100, 300, 200); frame.setVisible(true); JTextArea textArea = new JTextArea; textArea.setText(repLine(100, "abcabcabcabcabcabcabcabc")); frame.getContentPane().add(new JScrollPane(textArea)); desktop.add(frame); } }