I am using this code to add a scroll panel in my JFrame
JScrollPane pane = new JScrollPane(getContentPane(),
JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,
JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
this.setContentPane(pane);
I can view the scroll-bar but it is not scrollable even after resizing the window.