ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS,
ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
if (comp instanceof TableTab) {
pane.setVerticalScrollBar(((TableTab) comp).getVerticalScrollBar());
}
pane.addComponentListener(new ComponentListener() {
@Override
public void componentResized(ComponentEvent event) {
int width = pane.getViewport().getWidth();
comp.setSize(new Dimension(width, comp.getHeight()));
}