Package ghidra.app.services
Interface ViewManagerService
- 
- All Superinterfaces:
 ViewService
public interface ViewManagerService extends ViewService
Service to manage generic views; the view controls what shows up in the code browser. 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ghidra.app.plugin.core.programtree.ViewProviderServicegetCurrentViewProvider()Get the current view provider.voidsetCurrentViewProvider(java.lang.String viewName)Set the current view to the provider with the given name.voidviewNameChanged(ghidra.app.plugin.core.programtree.ViewProviderService vps, java.lang.String oldName)Notification that a view name has changed.- 
Methods inherited from interface ghidra.app.services.ViewService
addToView, getCurrentView 
 - 
 
 - 
 
- 
- 
Method Detail
- 
setCurrentViewProvider
void setCurrentViewProvider(java.lang.String viewName)
Set the current view to the provider with the given name.- Parameters:
 viewName-
 
- 
getCurrentViewProvider
ghidra.app.plugin.core.programtree.ViewProviderService getCurrentViewProvider()
Get the current view provider. 
- 
viewNameChanged
void viewNameChanged(ghidra.app.plugin.core.programtree.ViewProviderService vps, java.lang.String oldName)Notification that a view name has changed.- Parameters:
 vps- service whose name has changedoldName- old name of the service
 
 - 
 
 -