Package ghidra.framework.options
Interface CustomOptionsEditor
-
- All Known Implementing Classes:
AddressFieldOptionsPropertyEditor
,ArrayElementPropertyEditor
,ManualViewerCommandEditor
,NamespacePropertyEditor
public interface CustomOptionsEditor
Marker interface to signal that the implementing PropertyEditor component desires to handle display editing of an option or options. This allows options to create custom property editors that can paint and edit a group of interrelated options.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String[]
getOptionDescriptions()
Gets the descriptions of the options that this editor is editing.java.lang.String[]
getOptionNames()
Gets the names of the options that this editor is editing.
-
-
-
Method Detail
-
getOptionNames
java.lang.String[] getOptionNames()
Gets the names of the options that this editor is editing.- Returns:
- the names of the options that this editor is editing; may not be null.
-
getOptionDescriptions
java.lang.String[] getOptionDescriptions()
Gets the descriptions of the options that this editor is editing.- Returns:
- the descriptions of the options that this editor is editing; may be null.
-
-