super("AllPeersView");
TableColumnCore[] items = PeersView.getBasicColumnItems(TableManager.TABLE_ALL_PEERS);
TableColumnCore[] basicItems = new TableColumnCore[items.length + 1];
System.arraycopy(items, 0, basicItems, 0, items.length);
basicItems[items.length] = new DownloadNameItem(TableManager.TABLE_ALL_PEERS);
tv = new TableViewSWTImpl<PEPeer>(Peer.class, TableManager.TABLE_ALL_PEERS,
getPropertiesPrefix(), basicItems, "connected_time", SWT.MULTI
| SWT.FULL_SELECTION | SWT.VIRTUAL);
tv.setRowDefaultHeight(16);