mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 10:19:23 +02:00
GP-3569 - Cleanup of Extension management
This commit is contained in:
parent
b0e0c7372a
commit
b7583dc0b9
61 changed files with 3058 additions and 2540 deletions
|
@ -55,7 +55,7 @@ public class SpecExtensionPanel extends JPanel {
|
|||
private boolean unappliedChanges;
|
||||
private SpecExtension specExtension;
|
||||
private List<CompilerElement> tableElements;
|
||||
private ExtensionTableModel tableModel;
|
||||
private SpecExtensionTableModel tableModel;
|
||||
private GTable extensionTable;
|
||||
private JButton exportButton;
|
||||
private JButton removeButton;
|
||||
|
@ -163,7 +163,7 @@ public class SpecExtensionPanel extends JPanel {
|
|||
}
|
||||
}
|
||||
|
||||
private class ExtensionTableModel extends AbstractGTableModel<CompilerElement> {
|
||||
private class SpecExtensionTableModel extends AbstractGTableModel<CompilerElement> {
|
||||
private final String[] columnNames = { "Extension Type", "Name", "Status" };
|
||||
|
||||
@Override
|
||||
|
@ -383,7 +383,7 @@ public class SpecExtensionPanel extends JPanel {
|
|||
|
||||
private void createPanel() {
|
||||
setLayout(new BorderLayout(10, 10));
|
||||
tableModel = new ExtensionTableModel();
|
||||
tableModel = new SpecExtensionTableModel();
|
||||
extensionTable = new CompilerElementTable(tableModel);
|
||||
|
||||
JScrollPane sp = new JScrollPane(extensionTable);
|
||||
|
|
|
@ -31,9 +31,9 @@ import docking.actions.PopupActionProvider;
|
|||
import docking.util.image.ToolIconURL;
|
||||
import ghidra.framework.model.*;
|
||||
import ghidra.framework.options.ToolOptions;
|
||||
import ghidra.framework.plugintool.PluginEvent;
|
||||
import ghidra.framework.plugintool.PluginTool;
|
||||
import ghidra.framework.plugintool.util.*;
|
||||
import ghidra.framework.plugintool.*;
|
||||
import ghidra.framework.plugintool.util.ServiceListener;
|
||||
import ghidra.framework.plugintool.util.UndoRedoToolState;
|
||||
import ghidra.program.model.listing.Program;
|
||||
|
||||
public class DummyTool extends PluginTool {
|
||||
|
@ -425,7 +425,7 @@ public class DummyTool extends PluginTool {
|
|||
}
|
||||
|
||||
@Override
|
||||
protected PluginsConfiguration createPluginsConfigurations() {
|
||||
public PluginsConfiguration createPluginsConfigurations() {
|
||||
return null;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue