GP-1557 - fixed NPE in program options when using a filter

Closes #3686
This commit is contained in:
dragonmacher 2021-11-30 10:33:03 -05:00
parent ab05672653
commit 8633d89c4e
2 changed files with 16 additions and 15 deletions

View file

@ -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();
}