Default Constructor super("ip", POSITION_LAST, 100, table_id); setObfustication(true);
super("ip", POSITION_LAST, 100, table_id); setObfustication(true);
return cell.getText().substring(0, 3);
PEPeer peer = (PEPeer)cell.getDataSource(); String sText = (peer == null) ? "" : peer.getIp(); if (cell.setText(sText) || !cell.isValid()) { String[] sBlocks = sText.split("\\."); if (sBlocks.length == 4) { try { long l = (Long.parseLong(sBlocks[0]) << 24) + (Long.parseLong(sBlocks[1]) << 16) + (Long.parseLong(sBlocks[2]) << 8) + Long.parseLong(sBlocks[3]); cell.setSortValue(l); } catch (Exception e) { e.printStackTrace(); /* ignore */ } } }