mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 19:42:36 +02:00
GP-1557 - fixed NPE in program options when using a filter
Closes #3686
This commit is contained in:
parent
ab05672653
commit
8633d89c4e
2 changed files with 16 additions and 15 deletions
|
@ -1,6 +1,5 @@
|
|||
/* ###
|
||||
* IP: GHIDRA
|
||||
* REVIEWED: YES
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
@ -22,16 +21,16 @@ package ghidra.framework.options;
|
|||
* editors that can paint and edit a group of interrelated options.
|
||||
*/
|
||||
public interface CustomOptionsEditor {
|
||||
|
||||
/**
|
||||
* Gets the names of the options that this editor is editing.
|
||||
* @return the names of the options that this editor is editing.
|
||||
*/
|
||||
public String[] getOptionNames();
|
||||
|
||||
/**
|
||||
* Gets the descriptions of the options that this editor is editing.
|
||||
* @return the descriptions of the options that this editor is editing.
|
||||
*/
|
||||
public String[] getOptionDescriptions();
|
||||
|
||||
/**
|
||||
* Gets the names of the options that this editor is editing.
|
||||
* @return the names of the options that this editor is editing; may not be null.
|
||||
*/
|
||||
public String[] getOptionNames();
|
||||
|
||||
/**
|
||||
* Gets the descriptions of the options that this editor is editing.
|
||||
* @return the descriptions of the options that this editor is editing; may be null.
|
||||
*/
|
||||
public String[] getOptionDescriptions();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue