Timeline view with preview and object hilighting.

Embedded timeline view instead of new window.
code formatting
This commit is contained in:
Jindra Petřík
2014-09-02 20:25:56 +02:00
parent 9a47517d94
commit bd04ffba49
17 changed files with 2181 additions and 2002 deletions
@@ -23,7 +23,7 @@ import javax.swing.table.AbstractTableModel;
* @author JPEXS
*/
public class HexViewTableModel extends AbstractTableModel {
private byte[] data;
private final int bytesInRow;
@@ -79,15 +79,15 @@ public class HexViewTableModel extends AbstractTableModel {
return null;
}
}
public byte[] getData() {
return data;
}
public void setData(byte[] data) {
this.data = data;
}
@Override
public void fireTableCellUpdated(int row, int columnd) {
super.fireTableCellUpdated(bytesInRow, bytesInRow);