Package ghidra.app.util.datatype
Class DataTypeDropDownSelectionDataModel
- java.lang.Object
-
- ghidra.app.util.datatype.DataTypeDropDownSelectionDataModel
-
- All Implemented Interfaces:
DropDownTextFieldDataModel<DataType>
public class DataTypeDropDownSelectionDataModel extends java.lang.Object implements DropDownTextFieldDataModel<DataType>
The data model forDropDownSelectionTextFieldthat allows the text field to work withDataTypes.
-
-
Constructor Summary
Constructors Constructor Description DataTypeDropDownSelectionDataModel(DataTypeManagerService dataTypeService)DataTypeDropDownSelectionDataModel(ServiceProvider serviceProvider)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDescription(DataType value)Returns a description for this item that gives that will be displayed along side of theDropDownSelectionTextField's matching window.java.lang.StringgetDisplayText(DataType value)Returns the text for the given item that will be entered into theDropDownSelectionTextFieldwhen the user makes a selection.intgetIndexOfFirstMatchingEntry(java.util.List<DataType> data, java.lang.String text)Returns the index in the given list of the first item that matches the given text.javax.swing.ListCellRenderer<DataType>getListRenderer()Returns the renderer to be used to paint the contents of the list returned byDropDownTextFieldDataModel.getMatchingData(String).java.util.List<DataType>getMatchingData(java.lang.String searchText)Returns a list of data that matches the given searchText.
-
-
-
Constructor Detail
-
DataTypeDropDownSelectionDataModel
public DataTypeDropDownSelectionDataModel(ServiceProvider serviceProvider)
-
DataTypeDropDownSelectionDataModel
public DataTypeDropDownSelectionDataModel(DataTypeManagerService dataTypeService)
-
-
Method Detail
-
getListRenderer
public javax.swing.ListCellRenderer<DataType> getListRenderer()
Description copied from interface:DropDownTextFieldDataModelReturns the renderer to be used to paint the contents of the list returned byDropDownTextFieldDataModel.getMatchingData(String).- Specified by:
getListRendererin interfaceDropDownTextFieldDataModel<DataType>
-
getDescription
public java.lang.String getDescription(DataType value)
Description copied from interface:DropDownTextFieldDataModelReturns a description for this item that gives that will be displayed along side of theDropDownSelectionTextField's matching window.- Specified by:
getDescriptionin interfaceDropDownTextFieldDataModel<DataType>
-
getDisplayText
public java.lang.String getDisplayText(DataType value)
Description copied from interface:DropDownTextFieldDataModelReturns the text for the given item that will be entered into theDropDownSelectionTextFieldwhen the user makes a selection.- Specified by:
getDisplayTextin interfaceDropDownTextFieldDataModel<DataType>
-
getMatchingData
public java.util.List<DataType> getMatchingData(java.lang.String searchText)
Description copied from interface:DropDownTextFieldDataModelReturns a list of data that matches the given searchText. A match typically means a "startsWith" match. A list is returned to allow for multiple matches.- Specified by:
getMatchingDatain interfaceDropDownTextFieldDataModel<DataType>- Parameters:
searchText- The text used to find matches.- Returns:
- a list of items matching the given text.
-
getIndexOfFirstMatchingEntry
public int getIndexOfFirstMatchingEntry(java.util.List<DataType> data, java.lang.String text)
Description copied from interface:DropDownTextFieldDataModelReturns 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:
getIndexOfFirstMatchingEntryin interfaceDropDownTextFieldDataModel<DataType>- Parameters:
data- the list to searchtext- 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.
-
-