JScrollPane scrollPane = new JScrollPane(table);
this.componentTabbedPane.add(scrollPane, 1);
this.componentTabbedPane.setTitleAt(1, "Streams");
table.getColumnModel().getColumn(0).setMaxWidth(20);
this.componentTabbedPane.setSelectedIndex(1);
table.addMouseListener(new MouseAdapter() {
private void maybeShowPopup(MouseEvent e) {
if (e.isPopupTrigger() && table.isEnabled()) {
Point p = new Point(e.getX(), e.getY());
int col = table.columnAtPoint(p);