JTextArea에 JScrollPane 추가시켜서 스크롤바 보이게 하려는데 왜 안될까?
아래는 TextArea에 스크롤 추가시키는소스 부분인데 저래하면 되야하지않음?

                content = new JTextArea();
                JScrollPane scroll = new JScrollPane(content);
                add(content);
                content.setLineWrap(true);
                
                scroll.setVisible(true);
                f.add(scroll);
                setSize(700,500);
                fline.setState(true);
                setVisible(true);

어찌할까 형들 ㅠㅠ