Horizontal Scroll Bar

- Code: Select all
...
UIGroupPanel group = new UIGroupPanel();
group.setText("ARaporu");
UITable table = new UITable();
table.setDataBook(rdbContacts);
group.setLayout(new UIBorderLayout());
group.add(table);
setLayout(new UIBorderLayout());
add(group, UIBorderLayout.CENTER);
setTitle("ARaporu");
setState(UIInternalFrame.MAXIMIZED_BOTH);
...
How can I set view Horizontal Scroll Bar?