Package ghidra.app.util.viewer.format
Interface FormatModelListener
-
- All Known Implementing Classes:
ListingCodeComparisonPanel,MultiListingLayoutModel,ProgramBigListingModel
public interface FormatModelListenerInterface for listeners to format model changes.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidformatModelAdded(FieldFormatModel model)Notifies that a new format model was added to the format manager.voidformatModelChanged(FieldFormatModel model)Notifies that the given format model was changed.voidformatModelRemoved(FieldFormatModel model)Notifies that a format model was removed.
-
-
-
Method Detail
-
formatModelAdded
void formatModelAdded(FieldFormatModel model)
Notifies that a new format model was added to the format manager.- Parameters:
model- the new model.
-
formatModelRemoved
void formatModelRemoved(FieldFormatModel model)
Notifies that a format model was removed.- Parameters:
model- the model that was removed.
-
formatModelChanged
void formatModelChanged(FieldFormatModel model)
Notifies that the given format model was changed.- Parameters:
model- the model that was changed.
-
-