Nie można przewinąć JTextArea ..!

Oto mój kod:

final JTextArea textArea = new JTextArea();
textArea.setFont(new Font("MS UI Gothic", Font.PLAIN, 13));
textArea.setLineWrap(true);
textArea.setBounds(77, 310, 474, 136);
//contentPane.add(textArea); (edited...still the same problem persists..)


JScrollPane sbrText = new JScrollPane(textArea);
sbrText.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);  
contentPane.add(sbrText);

Kiedy próbuję, obszar tekstowy nie jest widoczny .. (Używam wtyczki i układu Eclipse Window Builder jako „Absolute Layout”) ..

questionAnswers(3)

yourAnswerToTheQuestion