Default Constructor super("T", ALIGN_CENTER, POSITION_LAST, 20, table_id); setRefreshInterval(INTERVAL_LIVE);
super("T", ALIGN_CENTER, POSITION_LAST, 20, table_id); setRefreshInterval(INTERVAL_LIVE);
String ID = "PeersView.T." + cell.getText() + ".tooltip"; String sTooltip = MessageText.getString(ID, ""); if (sTooltip.length() > 0) cell.setToolTip(sTooltip);
cell.setToolTip(null);
PEPeer peer = (PEPeer)cell.getDataSource(); long value = (peer == null) ? 0 : (peer.isIncoming() ? 1 : 0); if (!cell.setSortValue(value) && cell.isValid()) return; cell.setText((value == 1) ? "R" : "L");