Package ghidra.app.util.viewer.field
Class SymbolAnnotatedStringHandler
java.lang.Object
ghidra.app.util.viewer.field.SymbolAnnotatedStringHandler
- All Implemented Interfaces:
AnnotatedStringHandler,ExtensionPoint
An annotated string handler that handles annotations that begin with
SUPPORTED_ANNOTATIONS. This class expects one string following the annotation
text that is the address or a symbol name. The display text will be that of the symbol that
is referred to by the address or symbol name.-
Field Summary
Fields inherited from interface ghidra.app.util.viewer.field.AnnotatedStringHandler
DUMMY_MOUSE_HANDLER -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncreateAnnotatedString(AttributedString prototypeString, String[] text, Program program) Creates anFieldElementbased upon the give array of Strings.Returns the String that represents the GUI presence of this optionReturns an example string of how the annotation is usedgetPrototypeString(String displayText) Returns an example string of how the annotation is usedString[]Returns the annotation string names that this AnnotatedStringHandler supports (e.g., "symbol", "address", etc...).booleanhandleMouseClick(String[] annotationParts, Navigatable sourceNavigatable, ServiceProvider serviceProvider) A method that is notified when an annotation is clicked.
-
Constructor Details
-
SymbolAnnotatedStringHandler
public SymbolAnnotatedStringHandler()
-
-
Method Details
-
createAnnotatedString
public AttributedString createAnnotatedString(AttributedString prototypeString, String[] text, Program program) Description copied from interface:AnnotatedStringHandlerCreates anFieldElementbased upon the give array of Strings. The first String in the list is expected to be the annotation tag used to create the annotation. At the very least the array is expected to be comprised of two elements, the annotation and some data. Extra data may be provided as needed by implementing classes.- Specified by:
createAnnotatedStringin interfaceAnnotatedStringHandler- Parameters:
prototypeString- The prototypeFieldElementthat dictates the attributes for the newly created string. Implementations may change attributes as needed.text- An array of Strings used to create theFieldElementbeing returned.program- The program with which the returned string is associated.- Returns:
- An
AnnotatedTextFieldElementthat will be used to render the given text.
-
getSupportedAnnotations
Description copied from interface:AnnotatedStringHandlerReturns the annotation string names that this AnnotatedStringHandler supports (e.g., "symbol", "address", etc...).- Specified by:
getSupportedAnnotationsin interfaceAnnotatedStringHandler- Returns:
- the annotation string names that this AnnotatedStringHandler supports.
-
getDisplayString
Description copied from interface:AnnotatedStringHandlerReturns the String that represents the GUI presence of this option- Specified by:
getDisplayStringin interfaceAnnotatedStringHandler- Returns:
- the String to display in GUI components.
-
getPrototypeString
Description copied from interface:AnnotatedStringHandlerReturns an example string of how the annotation is used- Specified by:
getPrototypeStringin interfaceAnnotatedStringHandler- Returns:
- the example of how this is used.
-
getPrototypeString
Description copied from interface:AnnotatedStringHandlerReturns an example string of how the annotation is used- Specified by:
getPrototypeStringin interfaceAnnotatedStringHandler- Parameters:
displayText- The text that may be wrapped, cannot be null- Returns:
- the example of how this is used.
-