Package ghidra.app.util.datatype
Class DataTypeDropDownSelectionDataModel
java.lang.Object
ghidra.app.util.datatype.DataTypeDropDownSelectionDataModel
- All Implemented Interfaces:
DropDownTextFieldDataModel<DataType>
public class DataTypeDropDownSelectionDataModel
extends Object
implements DropDownTextFieldDataModel<DataType>
The data model for
DropDownSelectionTextField
that allows the text field to work with
DataType
s.-
Constructor Summary
ConstructorDescriptionDataTypeDropDownSelectionDataModel
(DataTypeManagerService dataTypeService) DataTypeDropDownSelectionDataModel
(ServiceProvider serviceProvider) -
Method Summary
Modifier and TypeMethodDescriptiongetDescription
(DataType value) Returns a description for this item that gives that will be displayed along side of theDropDownSelectionTextField
's matching window.getDisplayText
(DataType value) Returns the text for the given item that will be entered into theDropDownSelectionTextField
when the user makes a selection.int
getIndexOfFirstMatchingEntry
(List<DataType> data, String text) Returns the index in the given list of the first item that matches the given text.Returns the renderer to be used to paint the contents of the list returned byDropDownTextFieldDataModel.getMatchingData(String)
.getMatchingData
(String searchText) Returns a list of data that matches the givensearchText
.
-
Constructor Details
-
DataTypeDropDownSelectionDataModel
-
DataTypeDropDownSelectionDataModel
-
-
Method Details
-
getListRenderer
Description copied from interface:DropDownTextFieldDataModel
Returns the renderer to be used to paint the contents of the list returned byDropDownTextFieldDataModel.getMatchingData(String)
.- Specified by:
getListRenderer
in interfaceDropDownTextFieldDataModel<DataType>
- Returns:
- the renderer.
-
getDescription
Description copied from interface:DropDownTextFieldDataModel
Returns a description for this item that gives that will be displayed along side of theDropDownSelectionTextField
's matching window.- Specified by:
getDescription
in interfaceDropDownTextFieldDataModel<DataType>
- Parameters:
value
- the value.- Returns:
- the description.
-
getDisplayText
Description copied from interface:DropDownTextFieldDataModel
Returns the text for the given item that will be entered into theDropDownSelectionTextField
when the user makes a selection.- Specified by:
getDisplayText
in interfaceDropDownTextFieldDataModel<DataType>
- Parameters:
value
- the value.- Returns:
- the description.
-
getMatchingData
Description copied from interface:DropDownTextFieldDataModel
Returns a list of data that matches the givensearchText
. A match typically means a "startsWith" match. A list is returned to allow for multiple matches.- Specified by:
getMatchingData
in interfaceDropDownTextFieldDataModel<DataType>
- Parameters:
searchText
- The text used to find matches.- Returns:
- a list of items matching the given text.
-
getIndexOfFirstMatchingEntry
Description copied from interface:DropDownTextFieldDataModel
Returns the index in the given list of the first item that matches the given text. For data sets that do not allow duplicates, this is simply the index of the item that matches the text in the list. For items that allow duplicates, the is the index of the first match.- Specified by:
getIndexOfFirstMatchingEntry
in interfaceDropDownTextFieldDataModel<DataType>
- Parameters:
data
- the list to search.text
- the text to match against the items in the list.- Returns:
- the index in the given list of the first item that matches the given text.
-