mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 19:42:36 +02:00
Merge remote-tracking branch 'origin/GT-0_EquateTableTestFixes'
This commit is contained in:
commit
9c1fc2514b
1 changed files with 7 additions and 2 deletions
|
@ -4,9 +4,9 @@
|
|||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
|
@ -43,6 +43,11 @@ class EquateTableModel extends GDynamicColumnTableModel<Equate, Object> {
|
|||
private EquateTablePlugin plugin;
|
||||
private List<Equate> equateList = new ArrayList<>();
|
||||
|
||||
// For testing
|
||||
static final int NAME_COL = 0;
|
||||
static final int VALUE_COL = 1;
|
||||
static final int REFS_COL = 2;
|
||||
|
||||
EquateTableModel(EquateTablePlugin plugin) {
|
||||
super(plugin.getTool());
|
||||
this.plugin = plugin;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue