(boolean restore)
| 134 | private Color packetColorYellow = new Color(0xff, 0xd7, 0x00); |
| 135 | |
| 136 | private GUIHistory(boolean restore) throws Exception { |
| 137 | packets = Packets.getInstance(restore); |
| 138 | packets.addPropertyChangeListener(this); |
| 139 | ResenderPackets.getInstance().initTable(restore); |
| 140 | Filters.getInstance().addPropertyChangeListener(this); |
| 141 | gui_packet = GUIPacket.getInstance(); |
| 142 | colorManager = new TableCustomColorManager(); |
| 143 | preferredPosition = 0; |
| 144 | update_packet_ids = new HashSet<Integer>(); |
| 145 | id_row = new Hashtable<Integer, Integer>(); |
| 146 | autoScroll = new GUIHistoryAutoScroll(); |
| 147 | } |
| 148 | |
| 149 | public DefaultTableModel getTableModel() { |
| 150 | return this.tableModel; |
nothing calls this directly
no test coverage detected