mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 14:41:08 +00:00
Timeline view with preview and object hilighting.
Embedded timeline view instead of new window. code formatting
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user