Package ghidra.util.bean.field
Class AnnotatedTextFieldElement
java.lang.Object
docking.widgets.fieldpanel.field.AbstractTextFieldElement
ghidra.util.bean.field.AnnotatedTextFieldElement
- All Implemented Interfaces:
FieldElement
A subclass of
FieldElement
that allows for mouse handling callbacks via the
handleMouseClicked(Navigatable, ServiceProvider)
method. This class
is based upon Annotation
objects, which are elements that perform actions when the
use clicks an instance of this class in the display.-
Field Summary
Fields inherited from class docking.widgets.fieldpanel.field.AbstractTextFieldElement
attributedString, column, row
-
Constructor Summary
ConstructorDescriptionAnnotatedTextFieldElement
(Annotation annotation, int row, int column) Constructor that initializes this text field element with the given annotation and row and column information. -
Method Summary
Modifier and TypeMethodDescriptionint
getCharacterIndexForDataLocation
(int dataRow, int dataColumn) Returns the character index appropriate for the given data locationgetDataLocationForCharacterIndex
(int characterIndex) Translates the given character index to a data location related to the data model, as determined by the FieldFactory.Returns the display string of annotationReturns the original annotation text in the data model, which will differ from the display text.boolean
handleMouseClicked
(Navigatable sourceNavigatable, ServiceProvider serviceProvider) This method is designed to be called when a mouse click has occurred for a givenProgramLocation
.replaceAll
(char[] targets, char replacement) Returns a new FieldElement with all occurrences of the target characters replaced with the given replacement character.substring
(int start, int end) Returns a new FieldElement containing just the characters beginning at the given start index (inclusive) and ending at the given end index (exclusive).Methods inherited from class docking.widgets.fieldpanel.field.AbstractTextFieldElement
charAt, getColor, getFieldElement, getHeightAbove, getHeightBelow, getMaxCharactersForWidth, getStringWidth, getText, length, paint, substring, toString
-
Constructor Details
-
AnnotatedTextFieldElement
Constructor that initializes this text field element with the given annotation and row and column information. The text of this element is the text returned fromAnnotation.getDisplayString()
.- Parameters:
annotation
- The Annotation that this element is describing.row
- The row that this element is oncolumn
- The column value of this element (the column index where this element starts)
-
-
Method Details
-
getRawText
Returns the original annotation text in the data model, which will differ from the display text.- Returns:
- the original annotation text in the data model.
- See Also:
-
getDisplayString
Returns the display string of annotation- Returns:
- the display string
- See Also:
-
getDataLocationForCharacterIndex
Description copied from interface:FieldElement
Translates the given character index to a data location related to the data model, as determined by the FieldFactory.- Specified by:
getDataLocationForCharacterIndex
in interfaceFieldElement
- Overrides:
getDataLocationForCharacterIndex
in classAbstractTextFieldElement
- Parameters:
characterIndex
- The character index to translate.- Returns:
- The data location in the model coordinates.
-
getCharacterIndexForDataLocation
public int getCharacterIndexForDataLocation(int dataRow, int dataColumn) Description copied from interface:FieldElement
Returns the character index appropriate for the given data location- Specified by:
getCharacterIndexForDataLocation
in interfaceFieldElement
- Overrides:
getCharacterIndexForDataLocation
in classAbstractTextFieldElement
- Parameters:
dataRow
- the row in the data model as determined by the creating field factory.dataColumn
- the column in the data model as determined by the creating field factory.- Returns:
- the character index appropriate for the given data location; -1 if this field does not contain the given location
-
substring
Description copied from interface:FieldElement
Returns a new FieldElement containing just the characters beginning at the given start index (inclusive) and ending at the given end index (exclusive).- Parameters:
start
- The starting index (inclusive) from which to substring this element.end
- The end index (exclusive) to which the substring will be performed.- Returns:
- a new FieldElement containing just the characters beginning at the given index.
-
replaceAll
Description copied from interface:FieldElement
Returns a new FieldElement with all occurrences of the target characters replaced with the given replacement character.- Parameters:
targets
- The array of characters to replace.replacement
- The replacement character.- Returns:
- a new FieldElement with all occurrences of the target characters replaced with the given replacement character.
-