Package ghidra.app.services
Interface BlockModelServiceListener
-
public interface BlockModelServiceListener
Listener interface for BlockModelService.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
modelAdded(java.lang.String modeName, int modelType)
Provides notification when a model is added.void
modelRemoved(java.lang.String modeName, int modelType)
Provides notifiication when a model is removed.
-
-
-
Method Detail
-
modelAdded
void modelAdded(java.lang.String modeName, int modelType)
Provides notification when a model is added.- Parameters:
modeName
- name of the block model that was addedmodelType
- type of block model that was added
-
modelRemoved
void modelRemoved(java.lang.String modeName, int modelType)
Provides notifiication when a model is removed.- Parameters:
modeName
- name of the block model that was removedmodelType
- type of block model that was removed
-
-