mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 14:00:45 +00:00
Add watch stub... not working :-(, probably bug of adobe.
This commit is contained in:
@@ -269,9 +269,19 @@ public class ABCPanel extends JPanel implements ItemListener, SearchListener<ABC
|
||||
List<TableModelListener> tableListeners = new ArrayList<>();
|
||||
|
||||
private List<Variable> vars;
|
||||
private List<Long> varIds;
|
||||
|
||||
public VariablesTableModel(List<Variable> vars) {
|
||||
public List<Long> getVarIds() {
|
||||
return varIds;
|
||||
}
|
||||
|
||||
public List<Variable> getVars() {
|
||||
return new ArrayList<>(vars);
|
||||
}
|
||||
|
||||
public VariablesTableModel(List<Variable> vars, List<Long> varIds) {
|
||||
this.vars = vars;
|
||||
this.varIds = varIds;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user